img错误无法正常工作

时间:2017-03-26 14:52:43

标签: javascript jquery imagesloaded flickity

我正在使用flickity galleryimages loaded但是当我运行以下内容时,img不会被删除:

$('.carousel').imagesLoaded().progress( function( instance ) {
     $('img').on("error", function () {
        $(this).remove();
    });
});

我也尝试过不在图库插件中运行.remove(),但我仍然会看到破碎的图像

  $(document).ready(function() {
     $('img').on("error", function () {
        $(this).remove();
    });
  });

0 个答案:

没有答案