页面的设置 disablescroll:true(需要配合设置
)
可以实现页面上下不能滑动
另一种实现方法:
设置页面的根元素 绝对定位,
position:fixed;
top:0;
bottom:0;
left:0;
right:0;
scroll:hidden;