将 jQuery ajax 调用包装在变量中,以便我可以在需要时设置Timeout 和clearTimeout?

发布于 2024-10-30 04:32:13 字数 361 浏览 3 评论 0原文

有没有办法可以将 jQuery ajax 调用放入变量中,以便我可以为特定事件创建 setTimeout 并为特定事件创建clearTimeout?例如,如果这有意义的话,如下所示:

var testEvent = function(){ $(this).load("info.php"); };

在特定事件

setTimeout("testEvent()",3000);

在另一个特定事件

clearTimeout("testEvent()");

Is there a way i can put a jQuery ajax call inside of a variable so i can create a setTimeout for specific events and clearTimeout for specific events? for example if this makes any sense something like this:

var testEvent = function(){ $(this).load("info.php"); };

On specific event

setTimeout("testEvent()",3000);

On another specific event

clearTimeout("testEvent()");

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

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

发布评论

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

评论(2

帥小哥 2024-11-06 04:32:13

几个漂亮的插件功能来实现这个目的怎么样?

$.fn.loadLater = function (url, time) {
    var me = this;
    this.data('load-later-timer', setTimeout(function () {
        me.load(url);
    }, time));
};

$.fn.dontLoadLater = function () {
    var timer = this.data('load-later-timer');
    if (timer != null) clearTimeout(timer);
};

像这样使用:

// Start timer
$(this).loadLater('info.php', 3000);

// Stop timer
$(this).dontLoadLater();

How about a couple of nifty plugin functions to do the trick?

$.fn.loadLater = function (url, time) {
    var me = this;
    this.data('load-later-timer', setTimeout(function () {
        me.load(url);
    }, time));
};

$.fn.dontLoadLater = function () {
    var timer = this.data('load-later-timer');
    if (timer != null) clearTimeout(timer);
};

Use like so:

// Start timer
$(this).loadLater('info.php', 3000);

// Stop timer
$(this).dontLoadLater();
一桥轻雨一伞开 2024-11-06 04:32:13

这绝对是有道理的,只需这样做:

var id = setTimeout(function() {testEvent()}, 3000);

clearTimeout(id);

确保两个事件处理程序都可以访问 id

编辑:我注意到您在 testEvent 中引用了 this。假设 this 是您使用 jQuery 定位的某个节点,代码可能如下所示:

var id = setTimeout(function() {
   $('.your-selector').each(testEvent);
}, 3000);

This absolutely makes sense, just do like this:

var id = setTimeout(function() {testEvent()}, 3000);

clearTimeout(id);

Make sure to keep id accessible for both event handlers.

EDIT: I've overseen that you're referring to this inside the testEvent. Assuming that this is some node you're locating using jQuery, the code may look like this:

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