Element.p 构造函数

Element.p()

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

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

实现

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