XML DOM - The Comment Object

❮ 前章へ 次章へ ❯

Try it Yourself - Examples

The examples below use the XML file books.xml.

createComment() - Create a comment node


The Comment object

The Comment object represents the content of comment nodes in a document.

Comment Object Properties

Property 説明
data Sets or returns the text of this node
length Returns the length of the text of this node

Comment Object Methods

Property 説明
appendData() Appends data to the node
deleteData() Deletes data from the node
insertData() Inserts data into the node
replaceData() Replaces data in the node
substringData() Extracts data from the node

❮ 前章へ 次章へ ❯