DOMImplementation物件createDocument()方法

2019-10-16 23:19:30

DOMImplementation物件createDocument()方法用於建立具有document元素的指定型別的DOM Document物件。

語法
以下是createDocument()方法的語法。

Document doc = document.implementation.createDocument(namespaceURI, qualifiedNameStr, documentType);

引數

  • namespaceURI是要建立的文件元素的名稱空間URI或null
  • qualifiedName是要建立的文件元素的限定名稱或null
  • doctype是要建立的文件型別或null
  • 此方法返回一個帶有document元素的新Document物件。

範例

下面的範例演示了createDocument()方法的用法 -

<!DOCTYPE html>
<html>
   <meta charset="utf-8"/>
    <head>

   </head>
   <body>
      <script>
         var doc = document.implementation.createDocument ('http://www.w3.org/1999/xhtml', 
            'html', null);
         var body = document.createElementNS('http://www.w3.org/1999/xhtml', 'body');
         body.setAttribute('id', 'Company');
         doc.documentElement.appendChild(body);
         document.write(doc.getElementById('Company')); // [object HTMLBodyElement]
      </script>
   </body>
</html>

執行上面範例程式碼,得到以下結果 -