CharacterData: length プロパティ

CharacterData.length プロパティは読み取り専用で、含まれているデータの文字数を正の整数で返します。

正の整数で、 CharacterData.data 文字列の長さを表します。

メモ: CharacterData は抽象インターフェイスです。 以下の例ではそれを実装した具象インターフェイスの一つである Text を使用しています。

html
<code>Text</code> ノード内の文字列の長さ: <output></output>
js
const output = document.querySelector("output");
const textnode = new Text(
  "このテキストは 'textnode.data' を使用して設定されました。",
);

output.value = textnode.length;

仕様書

Specification
DOM Standard
# dom-characterdata-length

ブラウザーの互換性

BCD tables only load in the browser