1、作用:选择符合特定条件的XML节点。
2、 XPath采用的是非XML语法,非常类似于文件系统路径的语法。
3、IE中的XPath:
var oFirstAuther = oXmlDom.documentElement.selectSingleNode("book/author");
//返回documentElement的上下文中<book/>元素子节点的第一个<auther/>元素
var cAuthors = oXmlDom.documentElement.selectNodes("book/author");
//返回documentElement的上下文中<book/>元素子节点的所有<auther/>元素
posted on 2006-12-13 16:14
happytian 阅读(164)
评论(0) 编辑 收藏