标签: jquery-selectors attributes
是否有更好的版本:
$(a[href$=".jpg"],a[href$=".gif"],a[href$=".png"],a[href$=".jpeg])
我感兴趣的原因有两个:
答案 0 :(得分:0)
您可以使用以下内容:
$.expr[':'].img = function(obj) { return (/\.(jpg|gif|png|jpeg)$/i).test(obj.href); }
然后调用这样的图像:
$("a:img")