微信小程序如何获取scroll-view索引
时间: 2023-02-11 08:47:04 浏览: 179
微信小程序-scroll-view滚动到指定位置(类似锚点)
在微信小程序中,可以通过在 scroll-view 组件上绑定 bindscrolltoupper 事件,在事件回调函数中通过 e.detail.scrollTop 属性获取 scroll-view 的索引。
例如:
```
<scroll-view bindscrolltoupper="getIndex" >
<!-- scroll-view content -->
</scroll-view>
```
```
Page({
getIndex: function(e) {
console.log(e.detail.scrollTop)
}
})
```
当然还有其他的事件如bindscroll,bindscrollbottom,bindscrolltolower可以根据需要选择使用。
阅读全文