var d = new Date();
var txt = document.getElementById('textfield');
function settime(){
s = new Date();
txt.value = Math.ceil((s-d)/1000);
s = null;
anyt = setTimeout("settime()",1000);
}
我不想Javascript里出现全局变量,如何把上面的语句封装到一个函数中,以致能让我在window.load事件中调用他。
临摹微笑
Helenr
拉风的咖菲猫
相关分类