Node.nodeValue - Web APIs 编辑
The nodeValue
property of the Node
interface returns or sets the value of the current node.
Syntax
str = node.nodeValue; node.nodeValue = str;
Value
str
is a string containing the value of the current node, if any. For the document itself, nodeValue
returns null
. For text, comment, and CDATA nodes, nodeValue
returns the content of the node. For attribute nodes, the value of the attribute is returned.
The following table shows the return values for different elements:
Node | Value of nodeValue |
---|---|
CDATASection | Content of the CDATA section |
Comment | Content of the comment |
Document | null |
DocumentFragment | null |
DocumentType | null |
Element | null |
NamedNodeMap | null |
EntityReference | null |
Notation | null |
ProcessingInstruction | Entire content excluding the target |
Text | Content of the text node |
When nodeValue
is defined to be null
, setting it has no effect.
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Node: nodeValue' in that specification. | Living Standard |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论