DOM - 实体对象属性 - xmlVersion



xmlVersion 属性提供作为外部解析实体的文本声明的一部分包含的 xml 版本,否则为 null。

语法

以下是使用 xmlVersion 属性的语法。

entotyObj.xmlVersion

示例

node.xml 内容如下 −

<?xml version = "1.0" encoding = "UTF-8" standalone = "no" ?>
<Company>
   <Employee category = "Technical" id = "firstelement">
      <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>

以下示例演示了 xmlVersion 属性的使用 −

<!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");
         document.write("xmlVersion is : ")
         document.write(xmlDoc.xmlVersion);
      </script>
   </body>
</html>

执行

将此文件另存为服务器路径上的 entityattribute_xmlversion.htm(此文件和 node.xml 应位于服务器上的同一路径中)。我们得到的输出如下所示 −

xmlVersion is : undefined
dom_entity_object.htm
广告