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.");
}