标签:style blog color io ar sp div c on
function fun() { setInterval(clock,10); } function clock() { var today=new Date(); var h=today.getHours(); var m=today.getMinutes(); var s=today.getSeconds(); document.getElementById(‘txt‘).value=h+‘-‘+m+‘-‘+s; }
很简单,通过创建日期对象来刷新时间。
标签:style blog color io ar sp div c on
原文地址:http://www.cnblogs.com/oaks/p/4005494.html