根据传入的模板字符串创建 Element 元素。
temp (String): Element 模板字符串。
(Element):返回创建的 DOM 元素。
$t.createElement('123') // null $t.createElement('<p class="text">123</p>') // <p class="text">123</p>