我需要使用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将被移除。
感谢。
答案 0 :(得分:2)
试试这段代码:
$("img").filter(function() {
return /^https?:\/\/(\w+.)?staticflickr.com\//.test(this.src);
}).hide();