JavaScript 中的innerHTML
,innerText
和 有什么区别value
?
innerText、innerHTML 和 value 之间的区别?
IT技术
javascript
dom
innerhtml
innertext
2021-02-04 22:33:44
6个回答
以下示例引用了以下 HTML 代码段:
<div id="test">
Warning: This element contains <code>code</code> and <strong>strong language</strong>.
</div>
该节点将由以下 JavaScript 引用:
var x = document.getElementById('test');
element.innerHTML
x.innerHTML
// => "
// => Warning: This element contains <code>code</code> and <strong>strong language</strong>.
// => "
这是 W3C 的DOM 解析和序列化规范的一部分。请注意,它是Element
对象的属性。
node.innerText
x.innerText
// => "Warning: This element contains code and strong language."
innerText
由 Microsoft 推出,有一段时间不受 Firefox 支持。2016 年 8 月,innerText
被WHATWG 采用,并在 v45 中添加到 Firefox。innerText
为您提供风格感知的文本表示,尝试匹配浏览器呈现的内容,这意味着:innerText
适用text-transform
和white-space
规则innerText
修剪行之间的空白并在项目之间添加换行符innerText
不会返回不可见项目的文本
innerText
将返回textContent
从未渲染过的元素<style />
和 `Node
元素属性
node.textContent
x.textContent
// => "
// => Warning: This element contains code and strong language.
// => "
虽然这是W3C 标准,但 IE < 9 不支持。
- 不知道样式,因此将返回由 CSS 隐藏的内容
- 不触发回流(因此性能更高)
Node
元素属性
node.value
这取决于您所针对的元素。对于上面的示例,x
返回一个没有定义属性的HTMLDivElement对象value
。
x.value // => null
<input />
例如,输入标签 ( ) 确实定义了一个value
属性,它指的是“控件中的当前值”。
<input id="example-input" type="text" value="default" />
<script>
document.getElementById('example-input').value //=> "default"
// User changes input to "something"
document.getElementById('example-input').value //=> "something"
</script>
从文档:
注意:对于某些输入类型,返回值可能与用户输入的值不匹配。例如,如果用户在 中输入非数字值
<input type="number">
,则返回值可能是空字符串。
示例脚本
下面是一个示例,它显示了上述 HTML 的输出:
var properties = ['innerHTML', 'innerText', 'textContent', 'value'];
// Writes to textarea#output and console
function log(obj) {
console.log(obj);
var currValue = document.getElementById('output').value;
document.getElementById('output').value = (currValue ? currValue + '\n' : '') + obj;
}
// Logs property as [propName]value[/propertyName]
function logProperty(obj, property) {
var value = obj[property];
log('[' + property + ']' + value + '[/' + property + ']');
}
// Main
log('=============== ' + properties.join(' ') + ' ===============');
for (var i = 0; i < properties.length; i++) {
logProperty(document.getElementById('test'), properties[i]);
}
<div id="test">
Warning: This element contains <code>code</code> and <strong>strong language</strong>.
</div>
<textarea id="output" rows="12" cols="80" style="font-family: monospace;"></textarea>
innerText
但是,与 不同的是,它innerHTML
允许您使用 HTML 富文本,并且不会自动编码和解码文本。换句话说,innerText
检索和设置标签的内容为纯文本,而innerHTML
检索和设置内容为HTML格式。
InnerText
物业HTML编码的内容,转向<p>
对<p>
等,如果你想插入你需要使用HTML标签InnerHTML
。
简单来说:
innerText
将按原样显示值并忽略HTML
可能包含的任何格式。innerHTML
将显示值并应用任何HTML
格式。
双方innerText
并innerHTML
返回内部部件的HTML元素。
和之间innerText
innerHTML
的唯一区别是:innerText
将 HTML 元素(整个代码)作为字符串返回并在屏幕上显示 HTML 元素(作为 HTML 代码),而innerHTML
仅返回 HTML 元素的文本内容。
查看下面的示例以更好地理解。运行下面的代码。
const ourstring = 'My name is <b class="name">Satish chandra Gupta</b>.';
document.getElementById('innertext').innerText = ourstring;
document.getElementById('innerhtml').innerHTML = ourstring;
.name {
color:red;
}
<p><b>Inner text below. It inject string as it is into the element.</b></p>
<p id="innertext"></p>
<br>
<p><b>Inner html below. It renders the string into the element and treat as part of html document.</b></p>
<p id="innerhtml"></p>
其它你可能感兴趣的问题