gpt4 book ai didi

jquery-mobile - 如何删除 jQuery Mobile RC2 中 URL 中的历史记录?

转载 作者:行者123 更新时间:2023-12-01 11:55:07 26 4
gpt4 key购买 nike

我正在使用 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>

关于jquery-mobile - 如何删除 jQuery Mobile RC2 中 URL 中的历史记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8008071/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com