码迷,mamicode.com
首页 > Web开发 > 详细

jquery 延迟执行方法

时间:2020-04-09 12:32:06      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:cti   pre   alert   fun   set   nbsp   func   color   col   

setTimeout方法使用时需注意: 

//以下两种方式都行:
setTimeout(function () { test(); }, 2000);
//或者
setTimeout(test(),2000);
function test(){
 alert("aaaa");
}
//以下是错误示例
setTimeout(test(),2000);
//会马上执行,没有延迟效果

 

jquery 延迟执行方法

标签:cti   pre   alert   fun   set   nbsp   func   color   col   

原文地址:https://www.cnblogs.com/smedas/p/12665914.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!