CharacterData:length 属性
只读的CharacterData.length
属性返回包含数据中的字符数,作为一个正整数。
值
CharacterData.data
字符串的长度,以正整数表示。
示例
注意:CharacterData
是一个抽象接口。下面的示例使用Text
,这是一个实现它的具体接口。
html
Length of the string in the <code>Text</code> node: <output></output>
js
const output = document.querySelector("output");
const textnode = new Text("This text has been set using 'textnode.data'.");
output.value = textnode.length;
规范
规范 |
---|
DOM 标准 # dom-characterdata-length |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。