小码哥的IT人生

XML DOM 定位节点

XML基础 2022-05-25 16:05:59小码哥的IT人生shichen

XML DOM 定位节点

可通过使用节点间的关系对节点进行定位。

实例

下面的例子使用 XML 文件 books.xml

函数 loadXMLDoc(),位于外部 JavaScript 中,用于加载 XML 文件。

完整实例【获取节点的父节点】:

<html>
<head>
<script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/example/xdom/books.xml");
x=xmlDoc.getElementsByTagName("book")[0];
document.write(x.parentNode.nodeName);
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

本例使用 parentNode 属性来获取节点的父节点。

完整实例【获取节点的首个子节点】:

<html>
<head>
<script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
</script>
<script type="text/javascript">
//check if the first node is an element node
function get_firstChild(n)
{
y=n.firstChild;
while (y.nodeType!=1)
  {
  y=y.nextSibling;
  }
return y;
}
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/example/xdom/books.xml");
x=get_firstChild(xmlDoc.getElementsByTagName("book")[0]);
document.write(x.nodeName);
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

本例使用 firstChild() 方法和一个自定义函数来获取一个节点的首个子节点。

定位 DOM 节点

通过节点间的关系访问节点树中的节点,通常称为定位节点 ("navigating nodes")。

在 XML DOM 中,节点的关系被定义为节点的属性:

  1. parentNode
  2. childNodes
  3. firstChild
  4. lastChild
  5. nextSibling
  6. previousSibling

下面的图像展示了 books.xml 中节点树的一个部分,并说明了节点之间的关系:

DOM node tree

DOM - 父节点

所有的节点都仅有一个父节点。下面的代码定位到 <book> 的父节点:

xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName("book")[0];
document.write(x.parentNode.nodeName);

例子解释:

  1. 通过使用 loadXMLDoc() 把 "books.xml" 载入到 xmlDoc 中
  2. 获取第一个 <book> 元素
  3. 输出 "x" 的父节点的节点名

 

完整实例【TIY】:

<html>
<head>
<script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/example/xdom/books.xml");
x=xmlDoc.getElementsByTagName("book")[0];
document.write(x.parentNode.nodeName);
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

避免空的文本节点

Firefox,以及其他一些浏览器,把空的空白或换行当作文本节点,而 IE 不会这么做。

这会在使用下列属性使产生一个问题:firstChild、lastChild、nextSibling、previousSibling。

为了避免定位到空的文本节点(元素节点之间的空格和换行符号),我们使用一个函数来检查节点的类型:

function get_nextSibling(n)
{
y=n.nextSibling;
while (y.nodeType!=1)
  {
  y=y.nextSibling;
  }
return y;
}

有了上面的函数,我们就可以使用 get_nextSibling(node) 来代替 node.nextSibling 属性。

代码解释:

元素节点的类型是 1。如果同级节点不是元素节点,就移动到下一个节点,直到找到元素节点为止。通过这个办法,在 IE 和 Firefox 中,都可以得到相同的结果。

获取第一个元素

下面的代码显示第一个 <book> 的第一个元素节点:

<html>
<head>
<script type="text/javascript" src="loadxmldoc.js">
</script>
<script type="text/javascript">
//check if the first node is an element node
function get_firstChild(n)
{
y=n.firstChild;
while (y.nodeType!=1)
  {
  y=y.nextSibling;
  }
return y;
}
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("books.xml");
x=get_firstChild(xmlDoc.getElementsByTagName("book")[0]);
document.write(x.nodeName);
</script>
</body>
</html>

输出:

title

例子解释:

  1. 通过使用 loadXMLDoc() 把 "books.xml" 载入 xmlDoc 中
  2. 在第一个 <book> 上使用 get_firstChild 函数,来获取元素节点中的第一个子节点
  3. 输出第一个子节点(属于元素节点)的节点名

 

完整实例【TIY】:

<html>
<head>
<script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
</script>
<script type="text/javascript">
//check if the first node is an element node
function get_firstChild(n)
{
y=n.firstChild;
while (y.nodeType!=1)
  {
  y=y.nextSibling;
  }
return y;
}
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/example/xdom/books.xml");
x=get_firstChild(xmlDoc.getElementsByTagName("book")[0]);
document.write(x.nodeName);
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

实例

下面的例子使用相似的函数:

  1. firstChild:

    完整实例【TIY】:

    <html>
    <head>
    <script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
    </script>
    <script type="text/javascript">
    //check if the first node is an element node
    function get_firstChild(n)
    {
    y=n.firstChild;
    while (y.nodeType!=1)
      {
      y=y.nextSibling;
      }
    return y;
    }
    </script>
    </head>
    <body>
    <script type="text/javascript">
    xmlDoc=loadXMLDoc("/example/xdom/books.xml");
    x=get_firstChild(xmlDoc.getElementsByTagName("book")[0]);
    document.write(x.nodeName);
    </script>
    </body>
    </html>

    可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

  2. lastChild:

    完整实例【TIY】:

    <html>
    <head>
    <script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
    </script>
    <script type="text/javascript">
    //check if the first node is an element node
    function get_lastChild(n)
    {
    y=n.lastChild;
    while (y.nodeType!=1)
      {
      y=y.previousSibling;
      }
    return y;
    }
    </script>
    </head>
    <body>
    <script type="text/javascript">
    xmlDoc=loadXMLDoc("/example/xdom/books.xml");
    x=get_lastChild(xmlDoc.getElementsByTagName("book")[0]);
    document.write(x.nodeName);
    </script>
    </body>
    </html>

    可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

  3. nextSibling:

    完整实例【TIY】:

    <html>
    <head>
    <script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
    </script>
    <script type="text/javascript">
    //check if the first node is an element node
    function get_nextSibling(n)
    {
    y=n.nextSibling;
    while (y.nodeType!=1)
      {
      y=y.nextSibling;
      }
    return y;
    }
    </script>
    </head>
    <body>
    <script type="text/javascript">
    xmlDoc=loadXMLDoc("/example/xdom/books.xml");
    x=get_nextSibling(xmlDoc.getElementsByTagName("title")[0]);
    document.write(x.nodeName);
    </script>
    </body>
    </html>

    可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

  4. previousSibling:

    完整实例【TIY】:

    <html>
    <head>
    <script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
    </script>
    <script type="text/javascript">
    //check if the first node is an element node
    function get_previousSibling(n)
    {
    y=n.previousSibling;
    while (y.nodeType!=1)
      {
      y=y.previousSibling;
      }
    return y;
    }
    </script>
    </head>
    <body>
    <script type="text/javascript">
    xmlDoc=loadXMLDoc("/example/xdom/books.xml");
    x=get_previousSibling(xmlDoc.getElementsByTagName("price")[0]);
    document.write(x.nodeName);
    </script>
    </body>
    </html>

    可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024