美文网首页
HTML String to DOM Node

HTML String to DOM Node

作者: 草帽lufei | 来源:发表于2019-01-07 14:02 被阅读0次

    DOMParser().parseFormString()

    // case 1
    let doc = new DOMParser().parseFromString('<p>123</p>', 'text/html')
    console.log(doc)
    
    // case 2
    let doc = new DOMParser().parseFromString('<p>123</p>', 'text/xml')
    console.log(doc)
    
    

    document.createRange().createContextualFragment()

    let frag = document.createRange().createContextualFragment('<div>One</div><div>Two</div>')
    console.log(frag)
    

    相关文章

      网友评论

          本文标题:HTML String to DOM Node

          本文链接:https://www.haomeiwen.com/subject/wyrurqtx.html