7月 21 2014 Javascript17 XMLHttpRequest 对象新特性 旧版本 123456789101112131415// 新建实例var xhr = new XMLHttpRequest();// 向服务器发出请求xhr.open('GET','example.php');xhr.send();// 监控xhr对象的状态变化,制定回调函数xhr.onreadystatechange = function(){ if(xhr.readyState ==4 && xhr.status ==200){ // 4表示数据接收完毕,200表示服务器返回一切正常 alert( xhr.responseText ); } else { alert( xhr.statusText ); }} 阅读全文