小编典典

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

html

我正在阅读$.mobile.changePage已弃用的文档。

但是它并没有说赞成什么,而是我可以使用什么。

是否有一个新的API文档页面?

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


阅读 324

收藏
2020-05-10

共1个答案

小编典典

jQuery Mobile 1.4开始$.mobile.changePage()已弃用并替换为:

$(":mobile-pagecontainer").pagecontainer("change", "target", { options });

缩短

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

更短的 … (1)

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

注意: 目标 是#page_id或URL。

演示版


(1) 默认<body>pageContainer,除非$.mobile.pageContainer在上进行了修改mobileinit

2020-05-10