jQuery 定时事件

发布于 2024-08-20 05:45:20 字数 62 浏览 2 评论 0原文

是否可以使用 jQuery 触发事件以在 n 之后设置 div 标签的文本。秒?

谢谢! 乔治

Is it possible, using jQuery, to fire off an event to set a div tag's text after n. seconds?

Thanks!
George

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

如果没有 2024-08-27 05:45:20
var doIt = function() {
    $("div.my").text("My message");
}
setTimeout(doIt, 3000);
var doIt = function() {
    $("div.my").text("My message");
}
setTimeout(doIt, 3000);
生死何惧 2024-08-27 05:45:20

如果您使用 jQuery 1.4,您始终可以执行以下操作:
<代码>

$(function() {
   $('#divId').delay(3000).text('New Text');
});

if you're using jQuery 1.4, you can always do:

$(function() {
   $('#divId').delay(3000).text('New Text');
});

栩栩如生 2024-08-27 05:45:20

为此,我一直在使用下面的 jQuery 插件。 Delay 可以与链式函数一起使用,notNow 则不能。

延迟

http://plugins.jquery.com/project/delay

$('#animate-this').fadeIn().delay(500).fadeOut();

notNow

http://plugins.jquery.com/project/notNow

$.notNow(2000, function() { 
    alert('woolsworth');
});

I've been using the following jQuery plugins below for this. Delay can be used with chained functions, notNow can't.

Delay

http://plugins.jquery.com/project/delay

$('#animate-this').fadeIn().delay(500).fadeOut();

notNow

http://plugins.jquery.com/project/notNow

$.notNow(2000, function() { 
    alert('woolsworth');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文