欢迎来到天天文库
浏览记录
ID:51690207
大小:32.59 KB
页数:2页
时间:2020-03-15
《javascript获取系统日期和动态时间.docx》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、//显示日期和时间-------NQfunctionShowDate(Elements){vartemp;vardatetime=newDate();varyear=datetime.getYear();varmonth=datetime.getMonth()+1;vardate=datetime.getDate();varday=datetime.getDay();temp=year+"年"+month+"月"+date+"日";switch(day){case0:temp=temp+"星期日";break;case1:temp=temp+"星期一";b
2、reak;case2:temp=temp+"星期二";break;case3:temp=temp+"星期三";break;case4:temp=temp+"星期四";break;case5:temp=temp+"星期五";break;case6:temp=temp+"星期六";break;}Elements.innerHTML=temp;}functionShowTime(Elements){vartemp="";vardatetime=newDate();varhour=datetime.getHours();varminu=datetime.getMi
3、nutes();varseco=datetime.getSeconds();if(hour<10)hour="0"+hour;if(minu<10)minu="0"+minu;if(seco<10)seco="0"+seco;temp=temp+""+hour+":"+minu+":"+seco+"";if(hour>=0&&hour<5)temp=temp+"零晨好"if(hour>=5&&hour<8)temp=temp+"早上好"if(hour>=8&&hour<11)temp=temp+"上午好"if(hour>=11&&hour<13)temp=
4、temp+"中午好"if(hour>=13&&hour<17)temp=temp+"下午好"if(hour>=17&&hour<24)temp=temp+"晚上好"Elements.innerHTML=temp;//这个Elements代表(表格)的idwindow.setTimeout("ShowTime("+Elements.id+")",1000)//这里Elements.name或Elements.id不是Elements}
此文档下载收益归作者所有