我自己在 jquery mobile 中处理后退/前进按钮。问题是,当用户单击返回按钮时,jquery 发送 ajax 请求并重新初始化页面,这弄乱了我所有的工作。我已经设置了data-backbtn="false"
, $.mobile.ajaxEnabled = false;
但是这些技巧都不适合我。任何的想法?
问问题
513 次
3 回答
2
我认为您的问题也在$.mobile.ajaxEnabled = false; 处理。
该代码示例必须由 mobileinti 事件触发,如下所示:
$(document).bind("mobileinit", function () {
$.mobile.ajaxEnabled = false;
});
还有一件事,必须在初始化 jQuery Mobile 之前触发 mobileinit 事件,如下所示:
<script src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js"></script>
<script>
$(document).bind("mobileinit", function () {
$.mobile.ajaxEnabled = false;
});
</script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
例子:
HTML 1:
<!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js"></script>
<script>
$(document).bind("mobileinit", function () {
$.mobile.ajaxEnabled = false;
});
</script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page" id="index">
<div data-theme="a" data-role="header">
<h3>
First Page
</h3>
<a href="second.html" class="ui-btn-right">Next</a>
</div>
<div data-role="content">
</div>
<div data-theme="a" data-role="footer" data-position="fixed">
</div>
</div>
</body>
</html>
HTML2:
<!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js"></script>
<script>
$(document).bind("mobileinit", function () {
$.mobile.ajaxEnabled = false;
});
</script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page" id="second">
<div data-theme="a" data-role="header">
<h3>
Second Page
</h3>
<a href="index.html" class="ui-btn-left">Back</a>
</div>
<div data-role="content">
</div>
<div data-theme="a" data-role="footer" data-position="fixed">
</div>
</div>
</body>
</html>
于 2013-03-14T13:50:18.277 回答
0
jQuery Mobile 在它们被导航离开后从 DOM 中删除伪页面(这仅适用于外部页面)。data-role="page"
您可以通过将 data-dom-cache="true" 属性添加到伪页面的元素来在单个伪页面上停止此行为:
<div data-dom-cache="true" data-role="page">
...
</div>
还有其他方法可以启用(我猜真的是禁用)此功能;你可以在这里阅读它们
于 2013-03-14T13:52:58.277 回答
0
我最终使用了对我有用的这条线,
$(window).off('popstate');
于 2013-03-17T09:36:58.740 回答