jQuery ajax - ajaxError() 方法 概述
jQuery 2022-06-01 17:20:00小码哥的IT人生shichen
jQuery ajax - ajaxError() 方法
实例
当 AJAX 请求失败时,触发提示框:
$("div").ajaxError(function(){
alert("An error occurred!");
});
完整实例:
<html>
<head>
<script type="text/javascript" src="https://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").ajaxError(function(){
alert("发生错误!");
});
$("button").click(function(){
$("div").load("wrongfile.txt");
});
});
</script>
</head>
<body>
<div id="txt"><h2>通过 AJAX 改变文本</h2></div>
<button>改变内容</button>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
ajaxError() 方法在 AJAX 请求发生错误时执行函数。它是一个 Ajax 事件。
语法
.ajaxError(function(event,xhr,options,exc))
参数 | 描述 |
---|---|
function(event,xhr,options,exc) |
必需。规定当请求失败时运行的函数。 额外的参数:
|
详细说明
XMLHttpRequest 对象和设置作为参数传递给回调函数。捕捉到的错误可作为最后一个参数传递:
function (event, XMLHttpRequest, ajaxOptions, thrownError) {
// thrownError 只有当异常发生时才会被传递 this;
}
亲自试一试 - 实例
完整实例【使用 xhr 和 options 参数】:
<html>
<head>
<script type="text/javascript" src="https://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").ajaxError(function(e,xhr,opt){
alert("Error requesting " + opt.url + ": " + xhr.status + " " + xhr.statusText);
});
$("button").click(function(){
$("div").load("wrongfile.txt");
});
});
</script>
</head>
<body>
<div id="txt"><h2>通过 AJAX 改变文本</h2></div>
<button>改变内容</button>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
如何使用 options 参数来获得更有用的错误消息。