Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 200 Bytes

readme.md

File metadata and controls

7 lines (6 loc) · 200 Bytes

html转成dom节点

const htmlToDom = require('zhf.html-to-dom');

const dom = htmlToDom(`<div>我是被创建的dom</div>`);
console.log(dom.outerHTML); // <div>我是被创建的dom</div>