1

我是电话间隙开发的新手,如何使用 jQuery 在电话间隙中进行页面转换。我使用了这个 $.mobile.changePage("activity.html", { transition: "slideup"}); 过渡,但它不起作用。谁能指出我正确的方向如何做到这一点。

提前致谢。

4

2 回答 2

2

jQuery基本上表示divs在单个.html文件中使用的页面。而 changePage 使用 jQuery Mobile AJAX 功能,如果你真的想导航到其他的,你可以使用 basic 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

链接 2

我希望它有帮助。

于 2013-03-28T10:15:54.647 回答
0

那就是 jQuery 移动版。您需要同时包含 jquery 和 jquery mobile 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>
于 2013-03-28T10:05:40.283 回答