标签:解释 send get 发送 class 发送请求 font 类型 pre
向服务器发送请求
1.向服务器发送请求
如需要将请求发送到服务器,我们使用XMLHttpRequest对象的open()和send()方法:
xmlhttp.open("GET","test1.txt",true); xmlhttp.send();
方法解释:
(1)open(method,url,async):
规定请求的类型、URL以及是否异步处理请求;
method:请求的类型,可以是GET或者POST;
url:文件在服务器上的位置;
async:true(同步)或者false(异步);
(2)send(string):
将请求发送到服务器;
string:仅用于post请求。
2.GET请求
(1)一个简单的GET请求
xmlhttp.open("GET","demo_get.asp",true); xmlhttp.send();
(2)为了避免得到一个缓存结果,可以用一下方式,向URL添加一个唯一ID
xmlhttp.open("GET","demo_get.asp?t="+Math.random(),true); xmlhttp.send();
(3)如果希望通过GET方法发送信息,向URL添加信息
xmlhttp.open("POST","demo_post.asp",true); xmlhttp.send();
标签:解释 send get 发送 class 发送请求 font 类型 pre
原文地址:http://www.cnblogs.com/ljiwej/p/6230316.html