我使用lazyload插件在我的网站上加载图像,它工作得很好,但是当通过AJAX加载图像时(当你点击缩略图加载帖子时)插件似乎不适用于这些图像。可能是因为图像最初不在 DOM 中吗?
知道我能做些什么来解决这个问题吗?
非常感谢。
插件:https ://github.com/tuupola/jquery_lazyload
$("body img").lazyload({
effect : "fadeIn",
failure_limit : 99999,
threshold : 100
});