在Jquery Mobile中最大化div [data-role = content]

时间:2011-11-17 03:08:37

标签: jquery-mobile

有没有人真的成功地做到了这一点似乎有很多尝试在线,但没有人有一个明确的解决方案。我尝试了很多人建议的插件,但没有任何工作。

我只想让谷歌地图全尺寸(除了页眉和页脚)然后在另一页上我想要一个div来做同样的事情

1 个答案:

答案 0 :(得分:1)

JQuery-Mobile content area 100% height between head and foot

与此同时,我建议使用iScroll [CSS位置:固定;仅适用于iOS5中的页眉和页脚]

在iScroll中,您只需将内容包装到包装器中即可。滚动类,其余的由脚本完成。这是主页http://cubiq.org/iscroll-4,这里有一些代码:

<div id="content" data-role="content">
     <div id="wrapper">
         <div id="scroller">
           your content here.
         </div>
     </div>
</div>

对于iScroll初始化,请使用cubiq网站上提供的文档。

ZY