insertAdjacentText 方法

void insertAdjacentText(
  1. String where,
  2. String text
)

在指定的位置将文本插入到 DOM 中。

要查看 where 的可能值,请阅读 insertAdjacentHtml 的文档。

另请参阅

实现

void insertAdjacentText(String where, String text) {
  if (JS('bool', '!!#.insertAdjacentText', this)) {
    _insertAdjacentText(where, text);
  } else {
    _insertAdjacentNode(where, new Text(text));
  }
}