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

html页面时间实例

时间:2015-09-23 11:54:46      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:html页面时间实例

html页面时间实例:



<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8" />

<title>时间</title>

</head>

<body>

<h1 id="timer"></h1>

</body>

</html>

<script>

//日期类型:date

var date = new Date();

console.log("日期类型======"+typeof date);

var timerDom = document.getElementById("timer");

setInterval(function(){

var d = new Date();

timerDom.innerHTML = d.toLocaleString();

},10);

  </script>


本文出自 “wennuanyiran” 博客,请务必保留此出处http://dingzhaoqiang.blog.51cto.com/5601059/1697384

html页面时间实例

标签:html页面时间实例

原文地址:http://dingzhaoqiang.blog.51cto.com/5601059/1697384

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