如果您在此处发布代码会很有帮助,否则我们只能猜测。问题可能是您colorbox()
在加载 HTML 时调用了该函数。但请注意,一旦通过 AJAX 加载更多图像的过程完成后,必须(再次)调用 colorbox 函数,如下所示:
$.ajax({
/* AJAX options go here */
}).done(function( msg ) {
$('.ajax-images').colorbox(); /* Define the colorboxes for the new content */
});