一个关于javascript读取xml的问题
服务器上的网页serverPage.asp:<%dimxmlStrxmlStr="<?xmlversion='1.0'encoding='gb2312'?>"xmlStr...
服务器上的网页
serverPage.asp:
<%
dim xmlStr
xmlStr="<?xml version='1.0' encoding='gb2312'?>"
xmlStr=xmlStr+"<student>"
xmlStr=xmlStr+"<name>"
xmlStr=xmlStr+"Mr Zheng"
xmlStr=xmlStr+"</name>"
xmlStr=xmlStr+"</student>"
response.Write(xmlStr)
%>
客户端上的网页
clientPage.html
<body>
<script language="javascript" type="text/javascript">
try{
XMLHttp=new ActiveXObject("Msxml2.XMLHTTP")
}catch(other){
try{
XMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
}catch(last){
try{
XMLHttp=new XMLHttpRequest()
}catch(nothing){
}
}
}
function onchangefun(){
XMLHttp.open("GET","serverPage.asp",true)
XMLHttp.onreadystatechange=update
XMLHttp.send()
}
function update(){
if(XMLHttp.readyState==4){
if(XMLHttp.status==200){
doc=XMLHttp.responseXML
node=doc.getElementsByTagName("student")
str=node[0].childNodes[0].childNodes[0].nodeValue
document.getElementById("pwd").value=str
}
}
}
</script>
<form name="form1">
<input type="text" name="user" onchange="onchangefun()" />
<input type="text" name="pwd" />
<input type="text" name="sex" />
<input type="button" name="btn" />
</form>
</body>
</html>
我错在哪了,他老提示“缺少对象”
楼下两位都不对 展开
serverPage.asp:
<%
dim xmlStr
xmlStr="<?xml version='1.0' encoding='gb2312'?>"
xmlStr=xmlStr+"<student>"
xmlStr=xmlStr+"<name>"
xmlStr=xmlStr+"Mr Zheng"
xmlStr=xmlStr+"</name>"
xmlStr=xmlStr+"</student>"
response.Write(xmlStr)
%>
客户端上的网页
clientPage.html
<body>
<script language="javascript" type="text/javascript">
try{
XMLHttp=new ActiveXObject("Msxml2.XMLHTTP")
}catch(other){
try{
XMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
}catch(last){
try{
XMLHttp=new XMLHttpRequest()
}catch(nothing){
}
}
}
function onchangefun(){
XMLHttp.open("GET","serverPage.asp",true)
XMLHttp.onreadystatechange=update
XMLHttp.send()
}
function update(){
if(XMLHttp.readyState==4){
if(XMLHttp.status==200){
doc=XMLHttp.responseXML
node=doc.getElementsByTagName("student")
str=node[0].childNodes[0].childNodes[0].nodeValue
document.getElementById("pwd").value=str
}
}
}
</script>
<form name="form1">
<input type="text" name="user" onchange="onchangefun()" />
<input type="text" name="pwd" />
<input type="text" name="sex" />
<input type="button" name="btn" />
</form>
</body>
</html>
我错在哪了,他老提示“缺少对象”
楼下两位都不对 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询