# html 字符串转 dom

html 字符串转 dom:

function htmlToElement(html) {
    var template = document.createElement('template');
    html = html.trim(); // 避免返回空文本 node 节点
    template.innerHTML = html;
    return template.content.firstChild;
}
最后更新: Mon, 29 Jan 2024 14:20:15 GMT

0 评论

加载中...
访问量:-