我需要使用 jQuery 删除具有来自 staticflickr.com 的源的页面上的所有图像。有人可以帮忙吗?
<img class="colorbox-194" src="http://farm8.**staticflickr.com**/7107/7143029237_13d20551a2.jpg" alt="the stride (explore) by stephane (got my camera back!!)">
像上面的 img 将被删除。
谢谢。
试试这个代码:
$("img").filter(function() {
return /^https?:\/\/(\w+.)?staticflickr.com\//.test(this.src);
}).hide();
演示:http: //jsfiddle.net/7KbCF/1/