setTimeout方法

//不建议传递字符串

setTimeout(alert("hello"),1000);

//推荐调用方式

setTimeout(function(){alert("hello");},1000);

原文地址:https://www.cnblogs.com/dream-w/p/4701525.html