Js之AJAX
Posted 再叙。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Js之AJAX相关的知识,希望对你有一定的参考价值。
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();
以上是关于Js之AJAX的主要内容,如果未能解决你的问题,请参考以下文章