HTML DOM nodeValue属性用于描述给定节点的属性。它用于设置或获取任何 Html 文档中的 nodeValue。先决条件 DOM(文档对象模型)
句法:
var x = document.getElementById("nodeId").firstChild;
x.nodeType;
x.nodeName;
x.nodeValue;
参数:
不需要参数。
返回值: HTML nodeValue 属性返回以下类型的值
- null:用于元素和文档节点。
- 属性值:对于任何属性。
- 内容:对于任何文本节点或评论节点。
示例:以下示例创建一个段落标记,它是“divId”
并提供一个按钮,该按钮生成段落标签属性并将其值返回给 id 为“GeeksForGeeks”的标签。
HTML
HTML | DOM nodeValue Property
GeeksforGeeks
Click the button get the node value of
the first button element in the document.
输出:
点击按钮前:
点击按钮后:
支持的浏览器: DOM nodeValue 属性支持的浏览器如下:
- 谷歌浏览器
- IE浏览器
- 火狐
- 歌剧
- 苹果浏览器