jQuery ajaxStop() 方法
实例
指定 AJAX 请求启动时要运行的函数:
<!DOCTYPE html>
<html>
<head>
<script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(document).ajaxStop(function(){
alert("所有的 AJAX 请求已完成");
});
$("button").click(function(){
$("div").load("/example/ajax/demo.ashx");
$("div").load("/example/ajax/demo_load.ashx");
});
});
</script>
</head>
<body>
<div><h2>让 AJAX 更改此文本</h2></div>
<button>修改内容</button>
</body>
</html>
定义与用法
ajaxStop()
方法指定在所有 AJAX 请求完成时运行的函数。
当 AJAX 请求完成时,jQuery 会检查是否还有其他 AJAX 请求。如果没有其他挂起的请求,则使用 ajaxStop()
方法指定的函数将运行。
注意:从 jQuery 1.8 版开始,此方法只应附加到文档。
语法
$(document).ajaxStop(function())
参数 | 描述 |
---|---|
function() | 必填。指定在所有 AJAX 请求完成时运行的函数 |