我有一个变量如下
var a = "Hi this is test. <img src='http://www.test.com/img1.jpg'> Test ends here";
我想将src
图片标签替换为其他图片网址让我们说http://www.test2.com/img2.jpg
所以输出应该是
var b = "Hi this is test. <img src='http://www.test2.com/img2.jpg'> Test ends here";
两个图像路径都是动态的。
请帮忙。