jQuery ajaxComplete(回调)方法
描述
ajaxComplete(回调) 方法将函数附加到每当AJAX请求完成时执行。这是一个Ajax事件。
语法
下面是使用此方法的简单语法 –
$(document).ajaxComplete( )
参数
以下是此方法使用的所有参数的描述-
- 回调 - 要执行的函数。XMLHttpRequest和用于该请求的设置作为参数传递给此函数。
示例
假设我们在result.html文件中有以下HTML内容-
<h1>THIS IS RESULT...</h1>
以下是一个简单示例,展示了此方法的用法。
<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){
('#stage1').load('result.html');
});(document).ajaxComplete(function(event, request, settings){
$("#stage2").html("<h1>Request Complete.</h1>");
});
});
</script>
</head>
<body>
<p>Click on the button to load result.html 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>