我在RegExr上测试了regEx并且它正在工作但是当我把它放在我的代码中时没有任何反应。
RegExp:https://regexr.com/3gpfu
我的代码:
$('.attachment-shop_thumbnail').each(function () {
var imgsrc = $(this).attr('src');
imgsrc = imgsrc.replace('/-\d+x\d./g', '');
console.log(imgsrc);
$(this).wrap('<a href="' + imgsrc + '" rel="lightbox"></a>');
});
我试图把它放在一个新的变量中:
var rgx = new RegExp('/-\d+x\d./g');
imgsrc = imgsrc.replace(rgx , '');
但这根本没有帮助。