Jquery ajaxStart()与ajaxStop()方法(实例讲解)
jquery中通过ajaxstart()和ajaxstop()两个方法提供了类似的功能。当一个ajax请求启动时,并且没有其他未完成的ajax请求时,将调用ajaxstart()方法。同样,ajaxstop()方法则是在所有ajax请求都完成时调用。这些方法的参数都是一个函数,这个函数将在事件发生时被调用。
例子
. 代码如下:
<html xmlns="https://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<script src="jquery-1.4.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#button1").click(function(){
$.post("default2.x","",function(data){
$("#x").text(data);
},"text");
});
$("#my").ajaxstart(function(){
$(this).show();
}).ajaxstop(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<input id="button1" type="button" value="button" />
<p id="my" style=" display:none">
<img src="loading.gif" />
</p>
<p id="x"></p>
</form>
</body>
</html>
上一篇: 网左右的模板运行报错
下一篇: JS-输入数字输出大写中文
推荐阅读
-
jQuery事件blur()方法的使用实例讲解
-
Jquery ajaxStart()与ajaxStop()方法(实例讲解)
-
JQuery中window.onload函数与$(document).ready()的区别实例讲解
-
jQuery方法链(Chaining)实例讲解
-
jQuery与Ajax的应用(jQuery中的Ajax)实例讲解
-
Jquery中find与each方法用法实例教程
-
jQuery事件blur()方法的使用实例讲解
-
JQuery操作iframe父页面与子页面的元素与方法(实例讲解)
-
各种选择框jQuery的选中方法(实例讲解)
-
jQuery:delegate中select()不起作用的解决方法(实例讲解)