gpt4 book ai didi

javascript - SetTimeout 无法正常工作

转载 作者:行者123 更新时间:2023-11-30 08:08:48 25 4
gpt4 key购买 nike

我觉得OK字符串的弹窗在点击按钮后5秒后会显示出来,但是点击按钮后弹窗立即显示,为什么?

谢谢!

<html>
<head>
<title>Wake up call</title>
<script type="text/javascript">
function wakeUpCall() { // Function is defined here
setTimeout(aa("ok"), 5000);
}

function aa(bb) {
alert(bb);
}
</script>
</head>
<body bgcolor="lightblue">
<form>
<input type="button"
value="Wake me"
onclick="wakeUpCall()">
</form>
</body>
</html>

最佳答案

function wakeUpCall() { // Function is defined here
setTimeout(function(){ alert("ok");}, 5000);
}

关于javascript - SetTimeout 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13488145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com