appendText 方法

void appendText(
  1. String text
)

在此元素的最后子元素之后添加指定的文本。

实现

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