一个关于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>
我错在哪了,他老提示“缺少对象”
楼下两位都不对
展开
 我来答
byf1987_gmail
2008-07-25 · TA获得超过299个赞
知道小有建树答主
回答量:241
采纳率:0%
帮助的人:425万
展开全部
doc=XMLHttp.responseXML.documentElement;
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式