标签:
Ajax即异步javascript和xml
创建XMLHttpRequest语法
var xhr = new XMLHttpRequest();
ajax例子
1 var xmlhttp; 2 if (window.XMLHttpRequest) //实例化XMLHttpRequest 3 {// code for IE7+, Firefox, Chrome, Opera, Safari 4 xmlhttp=new XMLHttpRequest(); 5 } 6 else 7 {// code for IE6, IE5 8 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); 9 } 10 11 xmlhttp.open("GET","/try/ajax/demo_get.php",true); 12 xmlhttp.send(); 13 14 //返回数据,触发该函数 15 xmlhttp.onreadystatechange=function() 16 { //判断状态码,给出相应处理 17 if (xmlhttp.readyState==4 && xmlhttp.status==200) 18 { 19 document.getElementById("myDiv").innerHTML=xmlhttp.responseText; 20 } 21 } 22 }
标签:
原文地址:http://www.cnblogs.com/zzg521/p/4476030.html