jquery仅在页面刷新后才起作用

时间:2015-03-25 08:01:02

标签: javascript php jquery html slideshow

我在网站上使用了响应式滑块和许多其他脚本。除了滑块的脚本之外,所有脚本都正常工作。 Slider的脚本仅在刷新页面时有效。我没有找到解决这个问题的方法 这是滑块的jquery代码:

<script type="text/javascript">
    jQuery(document).ready(function(){
        jQuery('#demo1').skdslider({delay:5000, animationSpeed: 2000,showNextPrev:true,showPlayButton:true,autoSlide:true,animationType:'fading'});
        jQuery('#demo2').skdslider({delay:5000, animationSpeed: 1000,showNextPrev:true,showPlayButton:false,autoSlide:true,animationType:'sliding'});
        jQuery('#demo3').skdslider({delay:5000, animationSpeed: 2000,showNextPrev:true,showPlayButton:true,autoSlide:true,animationType:'fading'});

        jQuery('#responsive').change(function(){
          $('#responsive_wrapper').width(jQuery(this).val());
          $(window).trigger('resize');
        });

    });
</script>

在部分中添加了Jquery库。并且对于滑块代码我尝试了不同的位置,如头部,身体部分和身体后关闭标签也。任何帮助表示赞赏...

0 个答案:

没有答案