Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Jquery 的新手,我试图做一些看起来很简单但我仍然无法让它工作的东西。
我想每秒在我的“身体”上附加一个“你好”,我希望它在 10 秒后停止。
我不知道如何在 10 秒后停止追加,欢迎提供一些帮助。我一定很简单,但我无法理解它
function Greeting(){ setTimeout(Greeting, 1000); $("body").append("<p> Hello </p>"); } Greeting();
看看Window的setInterval
setInterval(function () { $('body').append('<p> Hello </p>'); }, 1000);
谢谢。