标签:执行 demo 信息 val 使用 其他 set type nbsp
xmlhttp.open("GET","/try/ajax/demo_get.php",true);
xmlhttp.send();
可能得到的是缓存的结果。为了避免这种情况,请向 URL 添加一个唯一的 ID:
xmlhttp.open("GET","/try/ajax/demo_get.php?t=" + Math.random(),true);
通过 GET 方法发送信息,请向 URL 添加信息:
xmlhttp.open("GET","/try/ajax/demo_get2.php?fname=Henry&lname=Ford",true);
xmlhttp.open("POST","/try/ajax/demo_post.php",true);
xmlhttp.send();
如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
xmlhttp.open("POST","/try/ajax/demo_post2.php",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("fname=Henry&lname=Ford");
setRequestHeader(header,value)向请求添加 HTTP 头。
通过 AJAX,JavaScript 无需等待服务器的响应,而是:
标签:执行 demo 信息 val 使用 其他 set type nbsp
原文地址:http://www.cnblogs.com/lhq8998/p/7265974.html