页面的设置 disablescroll:true(需要配合设置
enablePullDownRefresh:false
)
可以实现页面上下不能滑动
另一种实现方法:
设置页面的根元素 绝对定位,
position:fixed;
top:0;
bottom:0;
left:0;
right:0;
scroll:hidden;
本文介绍了两种禁用页面滚动的方法:一是通过设置disableScroll和enablePullDownRefresh属性;二是使用CSS绝对定位并隐藏滚动条。适用于需要固定页面布局的场景。
页面的设置 disablescroll:true(需要配合设置
enablePullDownRefresh:false
)
可以实现页面上下不能滑动
另一种实现方法:
设置页面的根元素 绝对定位,
position:fixed;
top:0;
bottom:0;
left:0;
right:0;
scroll:hidden;
1036
2563
3681

被折叠的 条评论
为什么被折叠?