<script>
window.onload=function(){
function nowTime(){
var s=0,m;
(function(){
s++;
m=Math.floor(s/60);
document.getElementById('t').innerHTML=(Math.floor(m/60))+':'+(m%60)+':'+(s%60);
setTimeout(arguments.callee,1000);
})();}
nowTime();}
</script>
<div id="t"></div>
这是为了计时,即计算经过了多少秒。
它显示在 HH:MM:SS 中。
谁能缩短或加速它(我的意思是更好的性能)?
此代码每 15 分钟有 100 毫秒的延迟。以下答案具有类似的时间延迟。这段时间无关紧要。如果需要,校准时间非常容易。