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'
});
}
});
}