生活已是百般艰难,为何不努力一点。下面图老师就给大家分享Ajax 和 Asp 的编程,希望可以让热爱学习的朋友们体会到设计的小小的乐趣。
【 tulaoshi.com - Web开发 】
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/div
t.asp
[复制此代码]CODE:
%
Response.ContentType="text/xml"
response.charset="gb2312"
if request.querystring("t1")="1" then
response.write("OK/")
else
response.write("ERROR/")
end if
%
来源:http://www.tulaoshi.com/n/20160219/1609884.html
看过《Ajax 和 Asp 的编程》的人还看了以下文章 更多>>