我正在使用flickity gallery和images loaded但是当我运行以下内容时,img不会被删除:
$('.carousel').imagesLoaded().progress( function( instance ) {
$('img').on("error", function () {
$(this).remove();
});
});
我也尝试过不在图库插件中运行.remove()
,但我仍然会看到破碎的图像
$(document).ready(function() {
$('img').on("error", function () {
$(this).remove();
});
});