标签:cti pre alert fun set nbsp func color col
setTimeout方法使用时需注意:
//以下两种方式都行: setTimeout(function () { test(); }, 2000); //或者 setTimeout(‘test()‘,2000); function test(){ alert("aaaa"); } //以下是错误示例 setTimeout(test(),2000); //会马上执行,没有延迟效果
标签:cti pre alert fun set nbsp func color col
原文地址:https://www.cnblogs.com/smedas/p/12665914.html