jQuery ajax - ajaxStart() 方法 概述
jQuery 2022-06-01 17:20:25小码哥的IT人生shichen
jQuery ajax - ajaxStart() 方法
实例
当 AJAX 请求开始时,显示“加载中”的指示:
$("div").ajaxStart(function(){
$(this).html("<img src='demo_wait.gif' />");
});
完整实例:
<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").ajaxStart(function(){
$(this).html("<img src='/i/demo_wait.gif' />");
});
$("button").click(function(){
$("div").load("/example/jquery/demo_ajax_load.asp");
});
});
</script>
</head>
<body>
<div id="txt"><h2>通过 AJAX 改变文本</h2></div>
<button>改变内容</button>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
ajaxStart() 方法在 AJAX 请求发送前执行函数。它是一个 Ajax 事件。
详细说明
无论在何时发送 Ajax 请求,jQuery 都会检查是否存在其他 Ajax 请求。如果不存在,则 jQuery 会触发该 ajaxStart 事件。在此时,由 .ajaxStart() 方法注册的任何函数都会被执行。
语法
.ajaxStart(function())
参数 | 描述 |
---|---|
function() | 规定当 AJAX 请求开始时运行的函数。 |
示例
AJAX 请求开始时显示信息:
$("#loading").ajaxStart(function(){
$(this).show();
});