insertAdjacentText 方法

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

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

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

参见

实现

void insertAdjacentText(String where, String text) {
  throw new UnsupportedError("Cannot invoke insertAdjacentText on SVG.");
}