码迷,mamicode.com
首页 > Web开发 > 详细

js自动时间

时间:2018-05-22 14:47:05      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:set   element   UNC   string   document   doc   javascrip   ntb   mon   

function showTime() {
	//时间
		nowtime = new Date();
		year = nowtime.getFullYear();
		month = nowtime.getMonth() + 1;
		date = nowtime.getDate();
		document.getElementById("mytime").innerHTML = year + "年" + month + "月" + date + "日" + nowtime.toLocaleTimeString();

	}
	setInterval("showTime()", 1000);

  

<span id="mytime">__年_月_日</span>

js自动时间

标签:set   element   UNC   string   document   doc   javascrip   ntb   mon   

原文地址:https://www.cnblogs.com/songjiabo/p/9071466.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!