Magnific Popup:选择特定的文件类型

时间:2015-12-02 23:22:55

标签: javascript jquery magnific-popup

我想只选择jpg文件并使用magnific popup。

$('.entry-content').each(function () {
    $(this).magnificPopup({
        delegate: 'a',
        type: 'image'
    });
});

由于使用$('.entry-content'),可下载的文件无效... 任何建议都有帮助。谢谢。

2 个答案:

答案 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