XML DOM internalSubset 屬性

2018-08-05 18:33 更新

XML DOM internalSubset 屬性


DocumentType 對(duì)象參考手冊(cè) DocumentType 對(duì)象

定義和用法

internalSubset 屬性以字符串形式返回內(nèi)部 DTD(無(wú)定界方括號(hào)),如果沒有則返回 null。

語(yǔ)法

documentObject.doctype.internalSubset


實(shí)例

下面的代碼片段使用 loadXMLDoc() 把 "books.xml" 載入 xmlDoc 中,并以字符串形式內(nèi)部 DTD:

xmlDoc=loadXMLDoc("note_internal_dtd.xml");
document.write(xmlDoc.doctype.internalSubset);

輸出:

<!ELEMENT note (to,from,heading,body)>
<!ELEMENT to (#PCDATA)>
<!ELEMENT from (#PCDATA)>
<!ELEMENT heading (#PCDATA)>
<!ELEMENT body (#PCDATA)>
<!ENTITY writer "Donald Duck.">
<!ENTITY copyright "Copyright W3Cschools">


DocumentType 對(duì)象參考手冊(cè) DocumentType 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)