Jquery Mobile - 在iframe中滚动后Navbar未修复

时间:2012-12-25 10:54:13

标签: jquery jquery-mobile iframe scroll

我已经在我的应用程序的所有页面上成功实现了一个固定的导航栏,除了在其中一个页面上。 此页面包含一个高度为100%且宽度为100%的iframe。

当我加载页面时,一切正常。

What is should be always like

如果我滚动一切仍然正常。

但接下来,我点击了iframe里面的链接

然后我滚动,导航栏和标题栏在滚动期间不再固定。然后他们又回到了自己的位置。 enter image description here

以下是一些可以帮助您解决问题的代码

<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <link rel="stylesheet" href="css/jqm-icon-pack-2.1.2-fa.css" />
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <script src="http://code.jquery.com/jquery-1.8.2.min.js"></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="boutique">
    <div data-role="header" data-position="fixed" data--tap-toggle="true">
        <h1>Boutique</h1>
    </div>
    <div data-role="content" style="padding:0px">
        <iframe  style="width:100%; height:100%; border:0px; margin:0px" src="http://autotech.gazoline.net/index.php?mobile_theme_ok" rel="external">
        </iframe>
    </div>
    <div data-role="footer" data-id="myfooter" data-transition="pop" data-position="fixed" data-tap-toggle="true">
    <div data-role="navbar" data-grid="b">
    <ul>
        <li><a href="#articles" data-icon="file">Articles</a></li>
        <li><a href="#videos" data-icon="play">Vid&eacute;os</a></li>
        <li><a class="ui-btn-active ui-state-persist" href="#boutique" data-icon="shopping-cart">Boutique2</a></li>
    </ul>
    </div>
</div>
</div>

1 个答案:

答案 0 :(得分:0)

我认为标题中的这个属性使这个

data--tap-toggle="true"

你应该把它写成页脚

data-tap-toggle="true"

此外,您不需要编写此代码,因为默认情况为“true” 如果要在单击时禁用切换,则应将其设为“false”

最好的问候