标签:style class code ext color int
1.AJAX 是一种在无需重新加载整个网页的情况下,能够更新部分网页的技术。
2.XMLHttpRequest 是 AJAX 的基础。
3.
创建 XMLHttpRequest 对象的语法:
variable=new XMLHttpRequest();
.老版本的 Internet Explorer (IE5 和 IE6)使用 ActiveX 对象:
variable=new ActiveXObject("Microsoft.XMLHTTP");
4.检查浏览器是否支持 XMLHttpRequest 对象。如果支持,
则创建 XMLHttpRequest 对象。如果不支持,则创建 ActiveXObject :
eg:
var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); }
5.如需将请求发送到服务器,我们使用 XMLHttpRequest 对象的 open() 和 send() 方法:
a:open(method,url,async)
规定请求的类型、URL 以及是否异步处理请求。
; b:send(string);
string:仅用于 POST 请求
与 POST 相比,GET 更简单也更快,并且在大部分情况下都能用。
然而,在以下情况中,请使用 POST 请求:
标签:style class code ext color int
原文地址:http://www.cnblogs.com/fg19/p/3714843.html