如何在Dart中向HTML元素添加文本?

时间:2012-08-29 12:24:53

标签: dart

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

2 个答案:

答案 0 :(得分:0)

上一个答案的新语法:

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

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

答案 1 :(得分: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");
}