qq_小河_1
2016-03-06 00:21
<!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.getHours()+":"+time.getMinutes()+":"+time.getSeconds();
document.getElementById("clock").value = attime;
}
//var y=setInterval(clock,100);
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="50" />
</form>
</body>
</html>
setInterval()是在执行时,从载入页面后每隔指定的时间执行代码。你的代码注释掉var y=setInterval(clock,100);后没有显示结果啊。
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题