0

感谢您花时间看我的问题!:)

我正在尝试使用 jQuery 插件RefineSlider

我的问题是我不是 Javascript 专家。我想要完成的是通过 ajax 调用动态添加幻灯片。ajax 调用将返回幻灯片的 html 结构。但它从来没有工作过,因为我认为它是在 DOM 中启动的,你不能动态修改幻灯片!

谢谢您,祝您度过愉快的一周!:)

4

1 回答 1

1

如果您在此 jquery 函数中添加实现滑块的函数:

//This function will be called after an ajax
$(document).ajaxComplete(function(){
//The example to implement the slider
   $('.rs-slider').refineSlide({
        transition         : 'fade',
        transitionDuration : 7000,
        autoPlay           : true,
        keyNav             : false,
        delay              : 0,
        controls           : null
    });
});

但警告此函数将被调用所有 ajax 调用。因此,您必须添加一个不添加更多滑块的控件的测试。

于 2012-10-23T10:42:18.260 回答