1

请帮助我解决这个问题..为什么我的 j-flow 滑块无法正常工作..我通过 j-flow demo 编写代码..请检查我给定的链接:

https://dl.dropboxusercontent.com/u/103234001/test/index.html

可能是我的文档准备功能有问题。但是我不知道,我怎么了。。

$(document).ready(function(){

    $("#myController").jFlow({

        controller: ".jFlowControl", // must be class, use . sign

        slideWrapper : "#jFlowSlider", // must be id, use # sign

        slides: "#mySlides",  // the div where all your sliding divs are nested in

        selectedWrapper: "jFlowSelected",  // just pure text, no sign

        effect: "flow", //this is the slide effect (rewind or flow)

        width: "940px",  // this is the width for the content-slider

        height: "300px",  // this is the height for the content-slider

        duration: 400,  // time in milliseconds to transition one slide

        pause: 5000, //time between transitions

        prev: ".jFlowPrev", // must be class, use . sign

        next: ".jFlowNext", // must be class, use . sign

        auto: true  

});

});

4

1 回答 1

1

您正在尝试在 https 上从 http 加载 jquery。jQuery 没有被加载。最好的解决方案是使用本地版本的 jquery 并像其他脚本一样引用它。否则你可以像谷歌图书馆指定的那样包含jquery......

 <script src="//ajax.googleapis.com/ajax/libs/jquerymobile/1.4.0/jquery.mobile.min.js"></script>

请注意缺少 http 或 https

使用浏览器调试工具可以轻松发现此类问题。

于 2014-02-20T09:09:55.680 回答