js实现动态显示时间效果
话不多说,请看代码:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>时间显示器</title>
</head>
<body>
<div id="d"></div>
<script type="text/javascript">
var nowTime ;
function play(){
var time = new Date();
nowTime = time.getFullYear()+"年"+time.getMonth()+"月"+time.getDate()+"日"+time.getHours()+"时"+time.getMinutes()+"分"+time.getSeconds()+"秒";
document.getElementById("d").innerHTML = nowTime;
}
setInterval(play,1000);
</script>
</body>
</html> 相关推荐
gufudhn 2020-06-06
nercon 2020-06-02
runner 2020-09-01
梦的天空 2020-08-25
移动开发与培训 2020-08-16
ReunionIsland 2020-08-16
lyqdanang 2020-08-16
MyNameIsXiaoLai 2020-07-08
星辰的笔记 2020-07-04
csstpeixun 2020-06-28
letheashura 2020-06-26
liaoxuewu 2020-06-26
sunzhihaofuture 2020-06-21
FEvivi 2020-06-16
坚持着执着 2020-06-16
waterv 2020-06-14
xiaoge00 2020-06-14
firejq 2020-06-14
firstboy0 2020-06-14
e度空间 2020-06-12