2016年1月30日
Ajax
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");
}
或者:
xmlhttp=new XMLHttpRequest()||ActiveXObject("Microsoft.XMLHTTP");function ajax(){
var xml=new XMLHttpRequest()||ActiveXObject("Microsoft.XMLHTTP");
xml.onreadystatechange=function(){
if (xml.readyState==4&&xml.status==200){
document.getElementById("myDiv").innerHTML=xml.responseText;
}
}
xml.open("get","/ajax_info.txt?t="+ Math.random(),true);
xml.send();
}Last updated