3

我的浏览器后退按钮和我的 Jquery Mobile 应用程序一直有问题。

我试图将问题提炼成最简单的形式。我有一个带有按钮的页面。我点击按钮,弹出窗口出现。弹出窗口上有一个指向谷歌的链接。我点击了谷歌的链接,它可以工作,但是当我点击浏览器的后退按钮时,我会看到该页面一秒钟,然后谷歌再次加载。就像您离开应用程序后根本无法返回一样。

在 PC 或 Mac 上不会出现此问题。它确实发生在 iPhone 和 iPad 上。

这是代码:

<!DOCTYPE html> 
<html> 
    <head> 
    <title>wtf</title> 

    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>


</head> 
<body> 
    <!-- Start of first page -->
<div data-role="page" id="foo">
    <div data-role="content" id="content">  
        <a href="#advisor4" data-rel="popup" data-role="button" data-close-btn="right" data-inline="true"  data-transition="slidedown" > popup</a>
    </div>      
    <div data-role="popup" id="advisor4" class="advisor popupPage ui-btn-right" data-dismissible="false" data-overlay-theme="e" data-theme="b" ><br/>
        <a class="advisor_button" id="answer-4-26" href="http://google.com" data-history="false" data-ajax="false" rel="external" data-role="button" data-inline="true" data-theme="b" data-corners="false"> google data-history="false" data-ajax="false" rel="external" </a><br/>
    </div>
</div><!-- /page -->
</body> 

谢谢!

4

1 回答 1

3

放在data-history="true"而不是false在链接中。

<a class="advisor_button" id="answer-4-26" href="http://google.com" data-history="false" data-ajax="false" rel="external" data-role="button" data-inline="true" data-theme="b" data-corners="false"> google data-history="true" data-ajax="false" rel="external" </a><br/>
于 2013-10-21T08:01:02.083 回答