是否有一个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请求失败时附加要执行的函数.