小程序开发文档官方示例网址:https://developers.weixin.qq.com/miniprogram/dev/component/scroll-view.html
竖向滚动必要条件
竖向滚动 (使用竖向滚动时,需要给<scroll-view>
一个固定高度,通过 WXSS 设置 height。)横向滚动类同,通过wxss设置固定width;scroll-x:true
1、wxml中
scroll-view竖向滚动必须设置scroll-y="true" style="height: 800rpx;" 必须..
style="height: 800rpx;" 必须为800rpx/800px 不能用百分号,即必须赋予scroll-view
固定的高度值。
2、js中
"toView","跳转到view的id"必须设置值
scroll-x | Boolean | false | 允许横向滚动 |
scroll-y | Boolean | false | 允许纵向滚动 |
scroll-into-view | String | 值应为某子元素id(id不能以数字开头)。设置哪个方向可滚动,则在哪个方向滚动到该元素 |