jQuery ajax - post() 方法
2017-08-05 jQuery ajax - post() 方法 jQuery Ajax 参考手册 实例 请求 test.php 网页,忽略返回值: $.post(test.php); TIY 实例 通过 AJAX POST 请求改变 div 元素的文本: $(input).keyup(function(){ txt=$(input).val(); $.post(
jQuery ajax - param() 方法
2017-08-05 jQuery ajax - param() 方法 jQuery Ajax 参考手册 实例 序列化一个 key/value 对象: var params = { width:1900, height:1200 };var str = jQuery.param(params);$(#results).text(str); 结果: width=1680height=1050 TIY 实例 输出序
jQuery ajax - load() 方法
2017-08-05 jQuery ajax - load() 方法 jQuery Ajax 参考手册 实例 使用 AJAX 请求来改变 div 元素的文本: $(button).click(function(){ $(div).load('demo_ajax_load.txt');}); 亲自试一试 您可以在页面底部找到更多 TIY 实例
jQuery ajax - getScript() 方法
2017-08-05 jQuery ajax - getScript() 方法 jQuery Ajax 参考手册 实例 通过 AJAX 请求来获得并运行一个 JavaScript 文件: $(button).click(function(){ $.getScript(demo_ajax_script.js);}); 亲自试一试 定义和用法 getScript() 方法
jQuery ajax - getJSON() 方法
2017-08-05 jQuery ajax - getJSON() 方法 jQuery Ajax 参考手册 实例 使用 AJAX 请求来获得 JSON 数据,并输出结果: $(button).click(function(){ $.getJSON(demo_ajax_json.js,function(result){ $.each(result, function(i, field){ $(div).
jQuery ajax - get() 方法
2017-08-05 jQuery ajax - get() 方法 jQuery Ajax 参考手册 实例 使用 AJAX 的 GET 请求来改变 div 元素的文本: $(button).click(function(){ $.get(demo_ajax_load.txt, function(result){ $(div).html(result); });}); 亲自试一试 定义和
jQuery ajax - ajaxSuccess() 方法
2017-08-05 jQuery ajax - ajaxSuccess() 方法 jQuery Ajax 参考手册 实例 当 AJAX 请求成功完成时,触发提示框: $(div).ajaxSuccess(function(){ alert(AJAX 请求已成功完成);}); 亲自试一试 定义和用法 ajaxSuccess() 方法在
jQuery ajax - ajaxStop() 方法
2017-08-05 jQuery ajax - ajaxStop() 方法 jQuery Ajax 参考手册 实例 当所有 AJAX 请求完成时,触发一个提示框: $(div).ajaxStop(function(){ alert(所有 AJAX 请求已完成);}); 亲自试一试 定义和用法 ajaxStop() 方法在
jQuery ajax - ajaxStart() 方法
2017-08-05 jQuery ajax - ajaxStart() 方法 jQuery Ajax 参考手册 实例 当 AJAX 请求开始时,显示“加载中”的指示: $(div).ajaxStart(function(){ $(this).html(img src='demo_wait.gif' /);}); 亲自试一试 定义和用法 ajaxStart
jQuery ajax - ajaxSetup() 方法
2017-08-05 jQuery ajax - ajaxSetup() 方法 jQuery Ajax 参考手册 实例 为所有 AJAX 请求设置默认 URL 和 success 函数: $(button).click(function(){ $.ajaxSetup({url:demo_ajax_load.txt,success:function(result){ $(div).html(result);}});