美文网首页
匹配script、style、link标签

匹配script、style、link标签

作者: 一沭丶 | 来源:发表于2018-12-07 16:01 被阅读9次
    var otherCode = '<link rel="icon" href="1.css" />'+
    '<style> .test{color: #fff;} </style>'+
      '<script>console.log(2)</script><script id="s_js_news">console.log(3)</script>';
    
    
    var linkReg= /<link(.*?)\/>/gi;
    var styleReg= /<style(.*?)>(.*?)<\/style>/gi;
    var scriptReg= /<script(.*?)>(.*?)<\/script>/gi;
    
    
    var linkResult = otherCode.match(linkReg) || []
    var styleResult = otherCode.match(styleReg) || []
    var scriptResult = otherCode.match(scriptReg) || []
    
    console.log(linkResult)
    console.log(styleResult)
    console.log(scriptResult)
    

    实例

    结果

    相关文章

      网友评论

          本文标题:匹配script、style、link标签

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