
本文共 1568 字,大约阅读时间需要 5 分钟。
$.get(url, function(res) {
$("#mapDiv").html(res);
});
var XMLHttpReq;
function createXMLHttpRequest() {
try {
XMLHttpReq = new ActiveXObject("Msxml2.XMLHTTP"); // IE ���������������
} catch (E) {
try {
XMLHttpReq = new ActiveXObject("Microsoft.XMLHTTP"); // IE ���������������
} catch (E) {
XMLHttpReq = new XMLHttpRequest(); // ������������������ IE ������������
}}
} // ������ XMLHTTP ������������
function sendAjaxRequest(url) {
createXMLHttpRequest();
XMLHttpReq.onreadystatechange = processResponse;
XMLHttpReq.open("post", url, true);
XMLHttpReq.send(null);
}
// ������������������
function processResponse() {
if (XMLHttpReq.readyState == 4) {
if (XMLHttpReq.status == 200) {
var text = XMLHttpReq.responseText;
// ������������ div ������
document.getElementById("mapDiv").innerHTML = text;
}}
}}
发表评论
最新留言
关于作者
