js 正则表达式替换字符串img的src
Posted 阿梅の博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 正则表达式替换字符串img的src相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
js正则匹配替代指定字符(根据img标签的src中的命名规则,用正则表达式替换成下面格式的文字)
js使用正则表达式将字符串里面的img标签src的值提取出来