Element.table 构造函数

Element.table()

创建一个新的 <table> 元素。

这相当于调用 new Element.tag('table')

实现

factory Element.table() => new Element.tag('table');