我想alert("hi")在alert("hello")没有点击OK"hello"警报的情况下在3秒内运行.
alert("hi")
alert("hello")
这是我的代码:
$(function(){ alert("hello"); setTimeout(function(){ alert("hi"); },3000) })
javascript alert
alert ×1
javascript ×1