//延时器,2秒后执行函数
function test(){ alert("aaaa"); } setTimeout(function () { test(); }, 2000); //或者 setTimeout('test()',2000);