我脑袋挨踢了3343099
2016-05-17 20:43
<!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+"").split(" ");
document.getElementById("clock").value = attime[4];
}
setInterval(clock,1000);
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="50" />
</form>
</body>
</html>
定时器代码
new Date();返回一个时间对象,没有split方法;
(time+"")即将时间对象转为字符串,来调用split
HTML5+CSS3实现春节贺卡
110036 学习 · 450 问题
相似问题