首页 > 代码库 > 页面显示时间----最简
页面显示时间----最简
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="http://www.mamicode.com/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>
页面显示时间----最简
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。