gpt4 book ai didi

javascript - 在jquery中使用setTimeout()

转载 作者:行者123 更新时间:2023-11-29 16:29:12 24 4
gpt4 key购买 nike

我对 Javascript 并不陌生,但后来我意识到我不知道如何使用 setTimeout() .

我已经尝试过这个:

$(document).ready(function(){

setTimeout('changeit()',1000); // I have also tried setTimeout('changeit',1000);
// var t = setTimeout('changeit()',1000); <--- tried also something like this.

// changeit(); <-- works when i do this.

function changeit(){
$('#hello').html('Hello World - this was inserted using jQuery');
// #hello is <p id="hello">Hello World</p>
}
})

谁能帮我解决这个问题吗?

最佳答案

传递对 changeit 函数的引用,而不是 JavaScript 代码字符串。

$(document).ready(function() {
setTimeout(changeit, 1000);
function changeit() {
$("#hello").html("Hello world - this was inserted using jQuery.");
}
});

关于javascript - 在jquery中使用setTimeout(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2215814/

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