标签:菜鸟 function open nbsp ref async new .com xmlhttp
XMLHttpRequest对象:
XMLHttpRequest 对象是用于幕后与服务器交换数据。
XMLHttpRequest 对象是开发者的梦想,因为您可以:
open(method,url,async)
method:请求的类型:GET 或 POST
url:文件在服务器上的位置
async:true(异步)或 false(同步)
send(string):发送请求到服务器。string:仅用于 POST 请求
1 var requery = new XMLHttpRequery();//new 一个对象 2 requery.open("get","get.php",true);//调用open方法 3 request.send(); 4 request.onreadystatechange=function(){//对过程一个监听 5 if(request.readyState===4&&request.status==200){ 6 //做一些事情。request.responseText 7 } 8 }
菜鸟:http://www.runoob.com/http/http-tutorial.html
慕课:http://www.imooc.com/video/5648
get:请求主要是获取信息 用URL传递参数,所以都可见,因此不安全,因此有信息数量有限制,2000字符。
post:一般修改服务器资源,对他人不可见 在请求体中 信息数量无限制 一般是修改 查看……
标签:菜鸟 function open nbsp ref async new .com xmlhttp
原文地址:http://www.cnblogs.com/dlgood/p/6688367.html