码迷,mamicode.com
首页 > Web开发 > 详细

js 正则表达式替换字符串img的src

时间:2020-07-13 21:20:29      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:http   ret   span   match   spl   capture   exp   dom   new   

    imgSrcReplace(htmlstr) {
      let that = this;
      let regex3 = new RegExp(/<img [^>]*src=["]([^‘"]+)[^>]*>/gi);
      let domainURL = "http://www.baidu.com/";
      let htmlstr1 = htmlstr.replace(regex3, function (match, capture) {
        console.log("capture:", capture);
        let tmp = capture.split(domainURL + "");
        capture = "http://www.amei.com" + tmp[1];
        var newStr = "<img src=" + capture +   />;
        return newStr;
      });
      regex3 = null;
      console.log("htmlstr1:", htmlstr1);
      return htmlstr1;
    },

js 正则表达式替换字符串img的src

标签:http   ret   span   match   spl   capture   exp   dom   new   

原文地址:https://www.cnblogs.com/zhaomeizi/p/13295552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!