As of jQuery Mobile 1.4, $.mobile.changePage()
is deprecated and replaced with:
$(":mobile-pagecontainer").pagecontainer("change", "target", { options });
Shortened...
$.mobile.pageContainer.pagecontainer("change", "target", { options });
Even shorter...(1)
$("body").pagecontainer("change", "target", { options });
Note: target is #page_id or URL.
Demo
(1) <body>
is pageContainer by default, unless $.mobile.pageContainer
is modified on mobileinit
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…