1. 首页
  2. 服务器应用
  3. Mail服务器
  4. jQuery中ajax – post() 方法实例详解

jQuery中ajax – post() 方法实例详解

上传者: 2020-12-11 20:01:51上传 PDF文件 74.46KB 热度 30次
在jquery中的ajax有二个数据发送模式,一种是get,另一种是post()。 jQuery Ajax 参考手册 实例 请求 test.php 网页,忽略返回值: $.post(“test.php”); TIY 实例 通过 AJAX POST 请求改变 div 元素的文本: $("input").keyup(function(){ txt=$("input").val(); $.post("demo_ajax_gethint.asp",{suggest:txt},function(result){ $("span").html(result); }); }); 亲自试一试 定义和
用户评论