DOM - Notation 对象属性 - systemId



Notation 的系统标识符,如果没有指定系统标识符,则为 null。

语法

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

var sysid = document.doctype.systemId;

示例

notation_xhtml.xml 内容如下 −

<?xml version = "1.0" encoding = "UTF-8" standalone = "no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<address>
   <name>Tanmay Patil</name >
   <company>TutorialsPoint</company>
   <phone>(011) 123-4567</phone>
</address>

以下是 systemId 属性用法示例 −

<!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/notation_xhtml.xml");
         document.write("The systemId asscoiated with the notation is:"+ xmlDoc.doctype.systemId);
      </script>
   </body>
</html>

执行

将此文件作为 notationattribute_systemsid.html 保存到服务器路径(此文件和 notation.xml 应位于服务器上的同一路径中)。我们会得到如下输出 −

The systemId asscoiated with the notation is:http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd 
dom_notation_object.htm
广告