jQuery ajaxError( callback )方法
描述
ajaxError( callback ) 方法将一个函数附加到每次AJAX请求失败时执行。这是一个Ajax事件。
语法
使用此方法的简单语法如下所示 –
$(document).ajaxError( callback )
参数
下面是此方法使用的所有参数的描述:
- callback - 要执行的函数。XMLHttpRequest和请求的设置将作为参数传递给此函数。如果在处理请求时发生异常,将传递第三个参数,即异常对象。
示例
以下是一个简单的示例,展示了此方法的用法。
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://www.tutorialspoint.com/jquery/jquery-3.6.0.js">
</script>
<script type = "text/javascript" language = "javascript">
(document).ready(function() {("#driver").click(function(event){
/* Assume result.text does not exist. */
('#stage1').load('/jquery/result.text');
});(document).ajaxError(function(event, request, settings ){
$("#stage2").html("<h1>Error in loading page.</h1>");
});
});
</script>
</head>
<body>
<p>Click on the button to load result.text file:</p>
<div id = "stage1" style = "background-color:blue;">
STAGE - 1
</div>
<div id = "stage2" style = "background-color:blue;">
STAGE - 2
</div>
<input type = "button" id = "driver" value = "Load Data" />
</body>
</html>