javascript – 什么是jQuery相当于Prototype的Ajax.Responders.register?

前端之家收集整理的这篇文章主要介绍了javascript – 什么是jQuery相当于Prototype的Ajax.Responders.register?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有一个jQuery等同于这个原型代码
Ajax.Responders.register({
  onException: function(x,y)
  {
    if(y.message!="Syntax error") new Insertion.After("toperrorBox","<p style='color:red'>"+y.message+"</p>");
  }
});

解决方法

http://docs.jquery.com/Ajax/ajaxError#examples
$('#toperrorBox').ajaxError(function (event,request,settings) {
   $(this).after("<p style='color:red'>"+ request.responseText +"</p>");
}

每当AJAX请求失败时附加要执行的函数.

原文链接:https://www.f2er.com/ajax/157046.html

猜你在找的Ajax相关文章