我想将.on()绑定到ajax“event”,这意味着只要成功检索到ajax响应,我就会触发它.
我不知道如何将.on()绑定到这样的事件.我需要像这样使用负载吗?
我不知道如何将.on()绑定到这样的事件.我需要像这样使用负载吗?
$(document).on('load','#elementInsertedByAjax',function(){ // will do something });
解决方法
你可以使用
.ajaxSuccess()
$(document).ajaxSuccess(function() { // will do something });
或绑定到
$(document).on('ajaxSuccess',function(){ // will do something });