admin管理员组文章数量:1348252
I am trying to override the jQuery ajax
function to handle a default action on a success event but also executing the callback function that i am using in the options
parameter.
What the purpose is there is tags returning in the response that I always want to strip out of the response for use elsewhere.
The scenario is:
- Ajax submit
- Ajax Success
- --DEFAULT SUCCESS ACTION
- --Call Ajax Success Callback
Can anyone help? I have tried extending
jQuery.ajax
jQuery.ajaxSuccess
jQuery.ajax.done
The code I have is:
var _ajaxSuccess = jQuery.fn.ajaxSuccess;
$.fn.extend({
ajaxSuccess: function (a)
{
_ajaxSuccess.apply(this, a);
}
});
I am trying to override the jQuery ajax
function to handle a default action on a success event but also executing the callback function that i am using in the options
parameter.
What the purpose is there is tags returning in the response that I always want to strip out of the response for use elsewhere.
The scenario is:
- Ajax submit
- Ajax Success
- --DEFAULT SUCCESS ACTION
- --Call Ajax Success Callback
Can anyone help? I have tried extending
jQuery.ajax
jQuery.ajaxSuccess
jQuery.ajax.done
The code I have is:
var _ajaxSuccess = jQuery.fn.ajaxSuccess;
$.fn.extend({
ajaxSuccess: function (a)
{
_ajaxSuccess.apply(this, a);
}
});
Share
Improve this question
edited Mar 20, 2013 at 13:39
mu is too short
435k71 gold badges859 silver badges818 bronze badges
asked Jun 30, 2011 at 8:40
QpirateQpirate
2,0781 gold badge31 silver badges42 bronze badges
0
3 Answers
Reset to default 6There is the global ajaxSuccess
callback:
Whenever an Ajax request pletes successfully, jQuery triggers the
ajaxSuccess
event. Any and all handlers that have been registered with the.ajaxSuccess()
method are executed at this time.
That will let you call your own function on every successful AJAX call without interfering with the usual success callbacks.
There are various other global AJAX event handlers that you might want to look at too.
If those callbacks don't have the right timing or capabilities for you, then you could write your own wrapper for $.ajax
and use that:
function wrapped_ajax(options) {
var success = options.success;
options.success = function(data, textStatus, jqXHR) {
// Do whatever needs to be done here.
if(success)
success(data, textStatus, jqXHR);
};
return $.ajax(options);
}
You can do whatever you need to the usual success callback parameters before calling the original success callback. You'd call wrapped_ajax
in exactly the same way as $.ajax
. You could use the same technique to hook into the other callbacks as well.
try jQuery.ajaxSetup
it may help you ,read about it here
Do like this:
$.ajaxSuccess(function(){
//somethingtodo
});
Mentioned in http://tutorialzine./2011/06/15-powerful-jquery-tips-and-tricks-for-developers/ heading twelve.
本文标签: javascriptOverride Ajax Success eventStack Overflow
版权声明:本文标题:javascript - Override Ajax Success event - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743847826a2549449.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论