这个是我的XML文档
<bookstore>
<book category="children">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="cooking">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="web">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
<book category="web">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
</book>
</bookstore>
这个是我的javascript脚本
<!--创建一个loadXMLDoc函数(dname值)一个参数-->
function loadXMLDoc(dname)
{
<!--如果现在异常-->
try
{
<!--xmlDoc等于 new 新建 ActiveXObject控件是一个动态链接对象(Microsoft.XMLDOM值)-->
xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
}
<!--出现异常在这里进行捕捉(e参数)-->
catch(e)
{
<!--如果出现异常-->
try
{
<!--xmlDoc等于document 对象是一棵文档树的根,可为提供对文档数据的最初(或最顶层)的访问入口 调用 implementation.createDocumen函数来请求XML文档并导入到JavaScript中("","",null值)-->
xmlDoc=document.implementation.createDocument("","",null);
}
<!--出现异常在这里进行捕捉(e参数) 警告框(e调用message消息服务系统)-->
catch(e) {alert(e.message)}
}
<!--如果出现异常-->
try
{
<!--xmlDoc调用警告框等于 false-->
xmlDoc.async=false;
<!--xmlDoc调用load加载(dname值)-->
xmlDoc.load(dname);
<!--return 返回值(xmlDoc值)-->
return(xmlDoc);
}
<!--出现异常在这里进行捕捉(e值) 警告框(e调用message消息服务系统)-->
catch(e) {alert(e.message)}
<!--return返回值(null)-->
return(null);
}
XMLDOM代码
<html>
<head>
<script type="text/javascript" src="loadxmldoc.js"></script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("books.xml");
在这里面我像通过输入 Harry Potter 来获得 year 的值 要怎么写?
</script>
</body>
</html>