请告诉我如何才能在文件名之前替换图像源字符串的URL地址?
现在我这样做就像$('img').attr('src', add+"slide1.jpg");
这样的硬编码方式,但我需要摆脱JS部分中的文件名,只需更新文件名前的URL字符串
var add = "https://lamaisonduchien.ca/wp-content/uploads/revslider/home_1/";
$(".button").on("click", function(){
$('img').attr('src', add+"slide1.jpg");
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="button">Update</button><br />
<img src="http://www.dpwts.com/slide1.jpg" alt="Smiley face" height="300" width="300">
<img src="http://www.aseanta.org/images/slide/slide1.jpg" alt="Smiley face" height="300" width="300">
&#13;
答案 0 :(得分:0)
您可以使用正则表达式检查jpg
或gif
等...:
^
.+
\b
.+
\.
jpg
或gif
var add = "https://lamaisonduchien.ca/wp-content/uploads/revslider/home_1/";
$(".button").on("click", function(){
$('img').each(function(index, val) {
var src = $(val).attr("src");
var pattern = /^.+(?=.*\b.+\.jpg)/;
$(val).attr("src", src.replace(pattern, add));
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="button">Update</button><br />
<img src="http://www.dpwts.com/slide1.jpg" alt="Smiley face" height="300" width="300">
<img src="http://www.aseanta.org/images/slide/slide1.jpg" alt="Smiley face" height="300" width="300">
然后,您可以使用replace将匹配值替换为add
变量。