JQuery Mobile - 链接到外部站点,无法返回带有浏览器后退页面的页面

时间:2013-10-17 06:19:47

标签: javascript jquery html jquery-mobile

我一直有使用浏览器后退按钮和我的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> 

谢谢!

1 个答案:

答案 0 :(得分: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/>