DOM - 节点对象方法 - hasChildNodes



hasChildNodes 方法返回此节点是否具有任何子级。如果当前节点具有子节点,则此方法返回 true,否则返回 false。

语法

以下是 hasChildNodes 方法用法的语法。

nodeObject.hasChildNodes()

如果节点有任何子级,则此方法返回布尔值 true,否则返回 false。

示例

node.xml 内容如下所示 -

<?xml version = "1.0"?>
<Company>
   <Employee category = "Technical">
      <FirstName>Tanmay</FirstName>
      <LastName>Patil</LastName>
      <ContactNo>1234567890</ContactNo>
      <Email>[email protected]</Email>
   </Employee>
   
   <Employee category = "Non-Technical">
      <FirstName>Taniya</FirstName>
      <LastName>Mishra</LastName>
      <ContactNo>1234667898</ContactNo>
      <Email>[email protected]</Email>
   </Employee>
   
   <Employee category = "Management">
      <FirstName>Tanisha</FirstName>
      <LastName>Sharma</LastName>
      <ContactNo>1234562350</ContactNo>
      <Email>[email protected]</Email>
   </Employee>
</Company>

以下示例演示了 hasChildNodes 方法的使用 -

<!DOCTYPE html>
<html>
   <head>
      <script>
         function loadXMLDoc(filename) {
            if (window.XMLHttpRequest) {
               xhttp = new XMLHttpRequest();
            } else // code for IE5 and IE6 {
               xhttp = new ActiveXObject("Microsoft.XMLHTTP");
            }
            xhttp.open("GET",filename,false);
            xhttp.send();
            return xhttp.responseXML;
         }
      </script>
   </head>
   <body>
      <script>
         xmlDoc = loadXMLDoc("/dom/node.xml");

         y = xmlDoc.getElementsByTagName("Employee")[0];
         document.write("Checks for the existence of child node : ");
         document.write(y.hasChildNodes());
      </script>
   </body>
</html>

执行

将此文件保存为服务器路径上的 nodemethod_haschildnodes.htm (此文件和 node.xml 应在服务器中的同一路径)。我们将如下所示获得输出 -

Checks for the existence of child node : true
dom_node_object.htm
广告