摘要:
1:时间对象创建var mydate=new Date();2:时间对象方法运用:如取年值:var year=mydate.getFullYear();取月值:var month=mydate.getMonth();取小时:var hour=mydate.getHours(); 阅读全文
摘要:
js邮箱验证代码的实现过程:1:邮箱输入框代码:<lable>邮箱是:</lable><input type="text" id="content"/> //把输入做为ID保存,这样javascript才能取值;2:验证框:<iput type="button" value="验证" onclick="email()"/> //onclick是串连验证框和javascrpit执行代码函数3:javascipt验证过程function email() 阅读全文