appendText 方法

void appendText(
  1. String text
)

将指定的文本添加到此元素的最后一个子元素之后。

实现

void appendText(String text) {
  this.append(new Text(text));
}