首页 相关文章 ajax的 responseXML返回接受 asp

ajax的 responseXML返回接受 asp

第一个文件 index.asp
script language="javascript"
var xmlHttp = false; //ajax使用
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
xmlHttp = false;
}
}
if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
xmlHttp = new XMLHttpRequest();
}
function callserver()
{
var url = "index.asp";
xmlHttp.open("POST",url,true);
xmlHttp....[ 查看全文 ]

2016-02-19 标签:

ajax的 responseXML返回接受 asp的相关文章

手机页面
收藏网站 回到头部