解决方法一:

view{
overflow:auto;
-webkit-overflow-scrolling: touch;
}

  这种方法虽然可以让列表滚动,但会伴随副作用(比如fixed元素会跟随滚动再恢复位置),不推荐。

解决方法二:

直接使用微信小程序提供的 “ scroll-view " 组件。

 <scroll-view scroll-y style="height: 200px;">
      <!--你要滚动的内容-->
</scroll-view>

注意: 必须要设置scroll-view的高度height

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-09
  • 2021-06-14
  • 2021-12-23
  • 2021-11-21
  • 2022-01-07
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-27
  • 2021-12-19
  • 2022-12-23
相关资源
相似解决方案