jquery-mobile之如何删除 jQuery Mobile RC2 中 URL 中的历史记录
52php
阅读:17
2024-11-24 20:56:43
评论:0
我正在使用 jQuery Mobile RC2。我需要在不跟踪历史记录的情况下将页面从一个页面更改到另一个页面。
我正在使用 $.mobile.changePage("#searchPage", "pop", false, false);
例如:
Actual : /DefaultSP.aspx#searchPage
Expected : /DefaultSP.aspx(need to remove #searchPage in URL)
提前致谢。
请您参考如下方法:
我不确定他们是否更改了关于如何使用它的标记,但这里是文档:
JS
//transition to the "confirm" page with a "pop" transition without tracking it in history
$.mobile.changePage( "../alerts/confirm.html", {
transition: "pop",
reverse: false,
changeHash: false
});
例子:
JS
$('#customNav').click(function() {
//transition to the "confirm" page with a "pop" transition without tracking it in history
$.mobile.changePage( "#page2", {
transition: "pop",
reverse: false,
changeHash: false
});
});
HTML
<div data-role="page" id="home">
<div data-role="content">
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="f">
<li data-role="list-divider">Home Page</li>
<li><a id="customNav">Page 2 (Click here)</a></li>
</ul>
</div>
</div>
<div data-role="page" id="page2">
<div data-role="content">
<ul data-role="listview" data-inset="true" data-theme="b" data-dividertheme="e">
<li data-role="list-divider">Page 2 will not be history</li>
<li><a href="#home">Home Page</a></li>
<li><a href="#page3">Page 3 (Click here)</a></li>
</ul>
</div>
</div>
<div data-role="page" id="page3" data-add-back-btn="true">
<div data-role="header" data-rel="back">
<h1>clicking the back button should go to home page</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="f">
<li data-role="list-divider">Page 3 (Click the back button in the header)</li>
<li><a href="#home">Home Page</a></li>
</ul>
</div>
</div>
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。