Tag: iscrollview

固定标题滚动/拖动jQuery的移动

我正在使用jquery mobile和phonegap开发移动web应用程序。 我开发了一个你好世界的应用程序。 它有页眉,页脚和内容区域。 页眉和页脚使用data-position="fixed"属性data-position="fixed" 。 但页眉和页脚的问题是,当我向下滚动,当内容完成,不再需要滚动时,它的头部拖下来(灵活性或指示,并没有更多的内容)。 正如在其他iOS应用程序,这个function存在,但在这些应用程序的页眉和页脚不上下拖动内容区域只拖动。 请看照片我的意思 如上图所示,标题被拖到我不想要的底部。 我只想要内容区域有这个function。 我怎样才能这样做,使内容区域只有当没有更多的内容可供查看? 任何帮助CSS,jQuery或jQuery的移动技巧? 更新 HTML代码在这里 <div data-role="page"> <div data-role="header" id="header" data-position="fixed"> <h1>Page Title</h1> </div><!– /header –> <div data-role="content" id="contents"> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> <h1>Hello Cirrus.</h1> […]