runoops.com

标签:jQuery

第11页
jQuery AJAX 方法

jQuery ajaxStop() 方法

阅读(444)

实例 Run this code » 当所有 AJAX 请求完成时,触发一个提示框: $(document).ajaxStop(function(){ alert("所有 AJAX 请求已完成"); }); 定义和用法 ajaxStop()...

jQuery AJAX 方法

jQuery ajaxStart() 方法

阅读(492)

实例 Run this code » 当 AJAX 请求开始时,显示 "loading" 的指示: $(document).ajaxStart(function(){ $(this).html("<img src='demo_wait...

jQuery AJAX 方法

jQuery ajaxSend() 方法

阅读(432)

实例 Run this code » 当 AJAX 请求即将发送时,改变 <div> 元素的内容: $(document).ajaxSend(function(e,xhr,opt){ $("div").append("Reque...

jQuery AJAX 方法

jQuery ajaxError() 方法

阅读(462)

实例 Run this code » 当 AJAX 请求失败时,触发一个警告框: $(document).ajaxError(function(){ alert("一个错误发生!"); }); 定义和用法 ajaxError() 方法规定 ...

jQuery AJAX 方法

jQuery post() 方法

阅读(471)

实例 1 Run this code » 使用 HTTP POST 请求从服务器加载数据: $("button").click(function(){ $.post("demo_test.html",function(data,status...

jQuery AJAX 方法

jQuery param() 方法

阅读(419)

实例 Run this code » 输出序列化对象的结果: $("button").click(function(){ $("div").text($.param(personObj)); }); 定义和用法 param() 方法创建数组...

jQuery AJAX 方法

jQuery getScript() 方法

阅读(428)

实例 Run this code » 使用 AJAX 请求,获取和运行 JavaScript: $("button").click(function(){ $.getScript("demo_ajax_script.js"); }); 定义...

jQuery AJAX 方法

jQuery getJSON() 方法

阅读(442)

实例 Run this code » 使用 Ajax 请求获取 JSON 数据,并输出结果: $(document).ready(function(){ $("button").click(function(){ $.getJSON("de...

jQuery AJAX 方法

jQuery get() 方法

阅读(427)

实例 Run this code » 发送一个 HTTP GET 请求到页面并取回结果: $("button").click(function(){ $.get("/try/ajax/demo_test.php",function(data...