请帮助我解决这个问题..为什么我的j-flow滑块无法正常工作..我通过j-flow演示代码编码..请查看我给出的链接:
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
});
});
答案 0 :(得分:0)
您正尝试在https上从http加载jquery。 jQuery没有加载。最好的解决方案是使用本地版本的jquery,并像其他脚本一样引用它。否则你可以包括像谷歌库指定的jquery ......
<script src="//ajax.googleapis.com/ajax/libs/jquerymobile/1.4.0/jquery.mobile.min.js"></script>
请注意缺少http或https
使用您的浏览器调试工具可以轻松发现这样的问题。