gpt4 book ai didi

jquery - 删除 .ajaxStop 使用的事件处理程序

转载 作者:行者123 更新时间:2023-12-03 22:56:28 25 4
gpt4 key购买 nike

如果我像这样使用 .ajaxStop 附加事件处理程序:

$(document).ajaxStop(function() {
//Some code
});

如何删除该事件处理程序?

最佳答案

尝试解除绑定(bind),如下所示:

$(document).ajaxStop(function () {
$(this).unbind("ajaxStop");
//Some code
});

我就是这么做的。

关于jquery - 删除 .ajaxStop 使用的事件处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16161335/

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