如何在jQuery mobile(1.4 beta)中更改页面?

前端之家收集整理的这篇文章主要介绍了如何在jQuery mobile(1.4 beta)中更改页面?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在阅读$ .mobile.changePage已被弃用的文档。

但它并不表示赞成什么,或者什么可以用。

有没有一个新的API文档页面

我曾经使用$ .mobile.changePage(“index.html”,{reloadPage:true});但是似乎添加了reloadPage:true的分页

解决方法

从jQuery Mobile 1.4开始,$ .mobile.changePage()已被弃用,并替换为:
$(":mobile-pagecontainer").pagecontainer("change","target",{ options });

缩短…

$.mobile.pageContainer.pagecontainer("change",{ options });

甚至更短…(1)

$("body").pagecontainer("change",{ options });

注意:target是#page_id或URL。

07000

(1)< body>是pageContainer默认情况下,除非$ .mobile.pageContainer在mobileinit上被修改

原文链接:https://www.f2er.com/jquery/183409.html

猜你在找的jQuery相关文章