2

我想向 DOM 中的元素添加一些文本。我如何在 Dart 中做到这一点?

4

2 回答 2

0

您可以使用Element.text设置元素的文本内容或使用 Element.appendText 在元素最后一个子元素之后添加文本:

import 'dart:html';

main() {
  var elem = new DivElement();
  // replace content with the text
  elem.text = "the text";
  // add a text after the last child of this element
  elem.appendText("the text");
}
于 2014-01-10T12:55:39.487 回答
0

先前答案的新语法:

import 'dart:html';
main() {
  var elem = new DivElement();
  elem.appendText("the text");
}

在最后一个子项之后添加指定文本的新导入样式和方法appendText(String text)

于 2014-01-10T12:41:25.453 回答