首页 相关文章 Ajax 和 Asp 的编程

Ajax 和 Asp 的编程

ajax.html
[复制此代码]CODE:
script
function f(){
var req =new ActiveXObject("Microsoft.XMLHTTP");
req.open("GET","t.asp?t1="+t1.value, true);
req.onreadystatechange = function(){
  if (req.readyState == 4) {
  if (req.status == 200) {
   msg.innerText = req.responseXML.documentElement.tagName;
}
}
}
req.send(null);
}
/script
div1:显示"OK"; 其他字符:显示"Error"/div
input id=t1 value=1
input type=button value="检测" onclick="javascript:f()" a href="javascript:f()"检测/a
div id=msg...[ 查看全文 ]

2016-02-19 标签:

Ajax 和 Asp 的编程的相关文章

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