Nivo 滑块每次滑动该图像时都会重新加载图像,在 localhost 上完美运行,但是当我将它托管在服务器(apache)中时,它会以这种方式运行。我通过函数调用(一次)而不是在正文加载时调用 nivo 滑块。不要与 ajax 调用混淆。仅在单击按钮后调用此函数,并在从请求中检索到的数据上调用滑块。
function call_to_refresh_results()
{
$.ajax({
url:url_to_send,
async:true,
success:function(data){
$("#fetched_view_for_event").empty();
$("#fetched_view_for_event").html(data);
$("#slider").nivoSlider({
directionNav: false, // Next & Prev navigation
directionNavHide: true, // Only show on hover
controlNav: false, // 1,2,3... navigation
controlNavThumbs: false, // Use thumbnails for Control Nav
pauseOnHover: true, // Stop animation while hovering
manualAdvance: false, // Force manual transitions
prevText: 'Prev', // Prev directionNav text
nextText: 'Next'
});
}
});
}