我想只选择jpg文件并使用magnific popup。
$('.entry-content').each(function () {
$(this).magnificPopup({
delegate: 'a',
type: 'image'
});
});
由于使用$('.entry-content')
,可下载的文件无效...
任何建议都有帮助。谢谢。
答案 0 :(得分:0)
您可以查看文件结尾是.png
。
$('.entry-content').each(function () {
if($(this).attr("src").match(/\.jpg$/)) {
$(this).magnificPopup({
delegate: 'a',
type: 'image'
});
}
});
答案 1 :(得分:0)
现在有效。这是我使用的代码。
$('a[href*=".jpg"], a[href*=".jpeg"]').each(function(){
$(this).magnificPopup({
type:'image'
});
});
谢谢@Oleander和@Brad Larson