gpt4 book ai didi

javascript - 如何 document.write 然后在延迟 document.write 之后再次

转载 作者:行者123 更新时间:2023-11-30 10:31:14 27 4
gpt4 key购买 nike

我希望能够为一件事做 document.write。然后延迟半秒,然后再记录。写一些。你知道这是否可能吗?而且,如果是这样,怎么办?到目前为止,我已经尝试过了,但没有奏效:

document.write("Hello!");
setTimeout(function(){
},1000);
document.write("hello!");

最佳答案

您需要将语句放在 setTimeout 中。

document.write("Hello!");

setTimeout(function(){
document.write("hello!");
},1000);

setTimeout()中的第一个参数是您要在 delay 毫秒后执行的函数。

这是一个 jsfiddle示例(不使用 document.write)

关于javascript - 如何 document.write 然后在延迟 document.write 之后再次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16876555/

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