jQuery ajax - ajaxError() 方法

实例

当 AJAX 请求失败时,触发提示框:

  1. $("div").ajaxError(function(){
  2. alert("An error occurred!");
  3. });

定义和用法

ajaxError() 方法在 AJAX 请求发生错误时执行函数。它是一个 Ajax 事件。

语法

  1. .ajaxError(function(event,xhr,options,exc))
参数 描述
function(event,xhr,options,exc) 必需。规定当请求失败时运行的函数。 额外的参数: - event - 包含 event 对象 - xhr - 包含 XMLHttpRequest 对象 - options - 包含 AJAX 请求中使用的选项 - exc - 包含 JavaScript exception

详细说明

XMLHttpRequest 对象和设置作为参数传递给回调函数。捕捉到的错误可作为最后一个参数传递:

  1. function (event, XMLHttpRequest, ajaxOptions, thrownError) {
  2. // thrownError 只有当异常发生时才会被传递 this;
  3. }

实例

使用 xhroptions 参数

如何使用 options 参数来获得更有用的错误消息。

  1. <html>
  2. <head>
  3. <script type="text/javascript" src="/jquery/jquery.js"></script>
  4. <script type="text/javascript">
  5. $(document).ready(function(){
  6. $("div").ajaxError(function(e,xhr,opt){
  7. alert("Error requesting " + opt.url + ": " + xhr.status + " " + xhr.statusText);
  8. });
  9. $("button").click(function(){
  10. $("div").load("wrongfile.txt");
  11. });
  12. });
  13. </script>
  14. </head>
  15. <body>
  16. <div id="txt"><h2>通过 AJAX 改变文本</h2></div>
  17. <button>改变内容</button>
  18. </body>
  19. </html>