//content 是要替换的字符串
var newContent = content.replace(/<img [^>]*src=['"]([^'"]+)[^>]*>/gi, function (match,capture) {
//match 返回每个查找出来的img标签。例:<img src="/upload/image/20180410/15349784.jpg" />
//capture 返回每个匹配的图片url的字符串。例:/upload/image/20180410/15349784.jpg
//url 是你的要替换的域名
var url = 'http://www.baidu.com';
var newStr = '<img src="' + url + capture + '"/>';
return newStr;
});
console.debug(newContent);