我是手机差距开发的新手,如何使用jQuery在手机间隙中进行页面转换。我使用了这个$ .mobile.changePage(“activity.html”,{transition:“slideup”});过渡,但它不起作用。任何人都指出我正确的方向如何做到这一点。
提前致谢。
答案 0 :(得分:2)
jQuery
基本上代表在单个divs
文件中使用.html
的网页。并且changePage使用jQuery Mobile AJAX功能,如果你真的想导航到其他的,你可以使用基本的javascript
。
window.location.href="your-new-page.html";
或
$.mobile.changePage( "second-page.html", { transition: "slideup"});
要导航使用div创建的页面,您可以使用
$.mobile.changePage( "#pageHome", { transition: "slideup"});
#pageHome
- 页面div的ID。
您也可以参考以下链接
我希望它有所帮助。
答案 1 :(得分:0)
那就是jQuery mobile。您需要同时包含jquery和jquery移动javascript才能使其正常工作。
不要忘记包含相应的jquery mobile css!
如果您需要进一步参考,请查看文档中的示例。
示例:
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>