我正在使用jQuery Mobile创建一个小型Web应用程序,我要停止更新地址栏。 这样,手机上的后退按钮就不再起作用,用户也无法通过网址跳转到应用程序的中间位置。
我已经阅读了文档,但我无法理解我需要哪种设置,但我知道它需要进入这里:
$(document).on("mobileinit", function() {
//disable history?
});
答案 0 :(得分:10)
在应用初始化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初始化之前执行,否则它将无效,但我想你可能知道这一点。
<!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>