你能帮我在下面的img src中替换“666666&r=”和“&u”之间的任何内容吗?
img src="img.php?&w=300&b=a&n=666666&r=3m&u=domain.com" class="graph"
现有尝试
$("#changeimg").change(function() {
$('.graph').each(function(index) {
//var sub = t.replace(/^.*666666&r=(.*)&u=*$/, '1y'); ??
$(this).attr("src", sub);
});
});
4条答案
按热度按时间owfi6suc1#
这将很好地工作:
它将替换
r=
参数,不管它是在查询字符串的开头,还是中间(如您发布的示例)8hhllhi22#
https://regex101.com/r/M8nDNA/1的示例和证明
yduiuuwa3#
huwehgph4#
谢谢大家的回答!!!
这是工作现在: