我刚刚开始在phonegap / xcode上编写我的第一个iOS应用程序。 我目前的手机版本是3.1.0,xcode是5.0
由于我想实现一些jquery移动函数,如固定页眉/页脚,我已经将脚本实现到我的index.html中,但它仍然无法正常工作。
以下是我的固定页眉/页脚的代码:
CSS:
#topbar{
display:block;
margin-left:0px;
margin-top:0px;
width:320px;
height:54px;
background-color:#000;}
的index.html:
<html>
<head>
<script src="js/jquerymobile.js"></script>
<script src="js/jquerymobile-1.3.2.js"</script>
<script src="js/jquery.mobile-1.3.2.min.js"</script>
</head>
<body>
<div data-role="topbar" data-position="fixed" data-tap-toggle="false"></div>
</body>
</html>
出于某种原因,我认为jquery没有被调用到应用程序中。如何解决此问题或我错过了哪些代码/脚本? 提前致谢!
答案 0 :(得分:1)
你必须在jquery mobile之前导入jquery,并记住,要使用jquery mobile,它必须是2.0之前的版本。