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>
執行上面範例程式碼,得到以下結果 -