//不建议传递字符串setTimeout(alert("hello"),1000);//推荐调用方式setTimeout(function(){alert("hello");},1000); 关于setTimeout(function(){alert("123")},10000);不能延迟的 :setTimeout只能指向函数 他自己不是函数 :setTimeout是可以写在方法外的 :alert就不行(alert只能在函数内)
本文共 270 字,大约阅读时间需要 1 分钟。
//不建议传递字符串setTimeout(alert("hello"),1000);//推荐调用方式setTimeout(function(){alert("hello");},1000); 关于setTimeout(function(){alert("123")},10000);不能延迟的 :setTimeout只能指向函数 他自己不是函数 :setTimeout是可以写在方法外的 :alert就不行(alert只能在函数内)
转载于:https://www.cnblogs.com/dream-w/p/4653686.html