首页 > 其他 > 详细

页面显示时间----最简

时间:2017-01-11 10:18:22      阅读:248      评论:0      收藏:0      [点我收藏+]

技术分享

 

<html lang="en">
<head>
<meta charset="UTF-8">
<script src="jquery-3.1.0.js"></script>
<title></title>
<style>
div{
text-align: center;
margin-top: 100px;
font-size: 30px;
}
</style>
</head>
<body>

<div>20:20:20</div>

<script>
$(function () {
var div = document.querySelector(‘div‘)
function time1 () {
var now = new Date()
div.innerHTML = now.toTimeString().substring(0, 9)
}
time1()
setInterval(time1,1000)
})
</script>
</body>
</html>

 

页面显示时间----最简

原文:http://www.cnblogs.com/-khj/p/6272364.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!