标签:htm document microsoft ons function innerhtml nbsp soft http
var xmlHttp;
function createHttp() {
try {
xmlHttp = new XMLHttpRequest();
} catch (e) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
}
createHttp();
xmlHttp.onreadystatechange = function () {
if (xmlHttp.status == 200 && xmlHttp.readyState == 4) {
var data = xmlHttp.responseText;
document.getElementById("div1").innerHTML = data;
}
}
xmlHttp.open("get", "HandlerData.ashx");
xmlHttp.send();
标签:htm document microsoft ons function innerhtml nbsp soft http
原文地址:http://www.cnblogs.com/wangxlei/p/5991317.html