本文介绍了我怎样才能注销一个处理程序设置为jQuery.ajaxStart()函数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试着做 $。ajaxStart(function(){})
,但它并没有取代它,而是追加了它。
如果是这样,只需使用jQuery的 unbind()
,因为处理程序是作为一个事件附加的。
$('selector')。unbind('ajaxStart');
I tried doing $.ajaxStart(function(){})
, but it does not replace it, but appended.
解决方案
If I understand, you want to remove the ajaxStart
handler from the element.
If so, just use jQuery's unbind()
since the handler is attached as an event.
$('selector').unbind('ajaxStart');
这篇关于我怎样才能注销一个处理程序设置为jQuery.ajaxStart()函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!