Home > Article > Web Front-end > How to get list of accessible document properties via W3C DOM?
The following are the document properties that can be accessed using the W3C DOM -
Properties & Description | |
---|---|
BodyA reference to the Element object that represents the tag of this document. Ex - document.body |
|
DefaultView Its read-only attribute represents Ex - document.defaultView | |
DocumentElement Tag for the document. Ex - document.documentElement8/31/2008 |
|
Implementation |
This is a read-only property that represents the DOMImplementation object that represents the implementation that created this document. Ex - document.implementation |
The above is the detailed content of How to get list of accessible document properties via W3C DOM?. For more information, please follow other related articles on the PHP Chinese website!