摘要: var timer = null;// typrof timer == 'object';timer = setInterval(function() { //...}, 1000);// typeof timer == 'number'clearInterval(timer);//typeof ... 阅读全文
posted @ 2016-01-13 18:39 PLDaily 阅读(1196) 评论(0) 推荐(1) 编辑
摘要: var n = 0;function fnTime(){alert(++n);}// 常用写法// 不加括号方式setTimeout(fnTime,5000);// 加字符串方式setTimeout('fnTime()',10000);// 加匿名函数方式setTimeout(function(){... 阅读全文
posted @ 2016-01-13 18:11 PLDaily 阅读(369) 评论(0) 推荐(0) 编辑