js动态显示时间
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>定時器</title>
<script type="text/javascript">var attime;function clock(){var time=new Date(); attime= time.toLocaleTimeString() ;document.getElementById("clock").value = attime;}setInterval(clock,1000);
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="50" />
</form>
</body>
</html>
?
轉(zhuǎn)載于:https://www.cnblogs.com/superxuezhazha/p/6362243.html
總結(jié)
- 上一篇: [Jmeter] 基本使用的总结
- 下一篇: 事件(二):事件处理程序