这句javascript语句很快就执行了alert(),没有达到延时的效果,怎样处理可以延时?
setTimeout(function(){alert("hi")},10000);
setTimeout(‘alert("hi")’,10000);