gpt4 book ai didi

jquery-mobile - 如何使用哈希导航和 html5 历史记录停止 jQuery Mobile?

转载 作者:行者123 更新时间:2023-12-04 22:46:25 25 4
gpt4 key购买 nike

我正在用 jQuery Mobile 制作一个小网络应用程序,我要停止更新地址栏。
因此手机上的后退按钮不再起作用,用户无法通过 URL 跳转到应用程序的中间。

我已经阅读了文档,但我不明白我需要哪个设置,但我知道它需要在这里输入:

$(document).on("mobileinit", function() {
//disable history?
});

最佳答案

在应用程序初始化 jQuery 之后但在 jQuery Mobile 初始化之前添加此代码片段:

<script>
$(document).on("mobileinit", function () {
$.mobile.hashListeningEnabled = false;
$.mobile.pushStateEnabled = false;
$.mobile.changePage.defaults.changeHash = false;
});
</script>
它应该是这样的:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script>
$(document).on("mobileinit", function () {
$.mobile.hashListeningEnabled = false;
$.mobile.pushStateEnabled = false;
});
</script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.js"></script>
请记住,此代码必须在 jQuery Mobile 初始化之前执行,否则它将无法工作,但我想您可能知道这一点。
例子:
索引.html:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script>
$(document).on("mobileinit", function () {
$.mobile.hashListeningEnabled = false;
$.mobile.pushStateEnabled = false;
$.mobile.changePage.defaults.changeHash = false;
});
</script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.js"></script>
<script>
$(document).on('pagebeforeshow', '#index', function(){
$(document).on('click', '#open-next-page', function(){
$.mobile.changePage("#second", {transition: 'pop'});
});
});
</script>
</head>
<body>
<div data-role="page" id="index">
<div data-role="header">
<h1>Sample</h1>
</div>
<div data-role="content">
<p></p>
<p><a id="open-next-page" data-role="button">Open page 2</a></p>
</div>
</div>
<div data-role="page" id="second">
<div data-role="header">
<a data-rel="back">Back</a>
<h1>Page 2</h1>
</div>
<div data-role="content">
This is page 2 content
</div>
</div>
</body>
</html>

关于jquery-mobile - 如何使用哈希导航和 html5 历史记录停止 jQuery Mobile?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24081331/

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