let parser = new DOMParser();
let doc = parser.parseFromString(htmlStr, “text/html”);

注:htmlStr为需要转化的字符串,转化之后doc为DOM对象,可使用js方法操作其中节点