import 'dart:html'; main() { var elem = new DivElement(); elem.appendHtml('<span>hello</span>'); }
appendHtml方法将解析HTML并将结果节点添加为元素的最后一个子节点.