如何从shopify中的img srouce中删除?v = 2222dddhh4?
主要来源:
我想:
<img src="https://cdn.shopify.com/s/files/1/1608/4177/files/Size_Guide.png>
答案 0 :(得分:1)
使用javacsript和jquery可能会帮助你:
$('img').each(function(){
var _src = $(this).attr('src');//get attribute src
_src = _src.replace(/\?v=.*?$/g,'');
$(this).attr('src',_src);//replace your same img
$('span').append(_src);//for test
});
答案 1 :(得分:0)
或者你可以简单地使用:
| split:'?' | first
它会将您的链接与“?”分开并且将只显示第一部分,即“?”之前的链接。