摘要:
var timer = null;// typrof timer == 'object';timer = setInterval(function() { //...}, 1000);// typeof timer == 'number'clearInterval(timer);//typeof ... 阅读全文
摘要:
var n = 0;function fnTime(){alert(++n);}// 常用写法// 不加括号方式setTimeout(fnTime,5000);// 加字符串方式setTimeout('fnTime()',10000);// 加匿名函数方式setTimeout(function(){... 阅读全文