<script type="text/javascript"> var int= setInterval(clock(),100); function clock(){ var time = new Date(); document.getElementsById("clock").value = time; } </script></head><body> <input type="text" id="clock" size="50" /></body>在input里每100毫秒的频率显示当前时间,可是document.getElementsById("clock").value = time;怎么也不能value的input
1 回答
四季花海
TA贡献1811条经验 获得超5个赞
你这问题多的啊..
setInterval你直接传入了clock(),改为clock
document.getElementsById("clock")注意没有s,是getElementById
script里面用window.onload包裹一下或者直接加到input标签的后面
添加回答
举报
0/150
提交
取消