Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在jquery mobile中实现列表。当我滚动列表时,页眉也会滚动。有没有办法在触摸事件中只滚动特定的div而不滚动页面中的所有div。
提前致谢。
如果您只是希望您的标题保持固定,那么您可以对其应用 data-position="fixed" 属性。
<div data-role="header" data-position="fixed">
这将防止它在您滚动页面时从顶部滚动。