最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

ajax的 responseXML返回接受 asp

 更新時間:2006年11月25日 00:00:00   作者:  
第一個文件   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.onreadystatechange = update;
    xmlHttp.setrequestheader("content-type","application/x-www-form-urlencoded");
 xmlHttp.send(null);
}
function update()
{
 if(xmlHttp.readystate==4)
 {
  var xmldoc=xmlHttp.responseXML
  var info = xmldoc.getElementsByTagName("info")[0].text;
  alert(info);
 }
}
callserver();
</script>

 

第二個   login.asp

<%
Response.ContentType="text/xml"
response.Write("<?xml version='1.0' encoding='GB2312' ?>")
response.Write("<root>")
response.Write("<info>love you</info>")
response.Write("</root>")
%>

相關文章

最新評論

安西县| 连南| 石河子市| 南通市| 昌平区| 江北区| 通江县| 安平县| 运城市| 黄大仙区| 遂溪县| 宣武区| 错那县| 黔东| 东丰县| 保靖县| 深圳市| 化州市| 峨眉山市| 甘孜| 武隆县| 尖扎县| 缙云县| 县级市| 松滋市| 庆安县| 夹江县| 福鼎市| 广灵县| 剑阁县| 吴桥县| 四会市| 丰台区| 肥城市| 融水| 柘城县| 廉江市| 元朗区| 宁晋县| 苗栗县| 洞口县|