收藏
回答

scroll-view组件的scroll-into-view属性获取不到元素id?

bindscroll="swichNav"函数获取不到元素id

<scroll-view scroll-y="true" scroll-with-animation="true" refresher-enabled="true" enhanced="true" scroll-into-view="{{rowView}}" scroll-top="{{scrollTop}}" bindscroll="swichNav" class="task_view" style="height:{{menuHeight}}px">
    <view class="item_scroll">
      <block wx:for="{{task}}" wx:for-index="index" wx:key="item">
        <text id="row_{{index}}" style="color: #ffffff;">{{item.time}}</text>
        <view wx:for="{{item.shop}}" wx:for-item="items" wx:key="item" class="shop">
          <text>{{items.name}}</text>
          <text class="shop_order">20</text>
          <view class="flex-center shop_info">
            <image class="avatar_35" mode="aspectFill" lazy-load="true" src="cloud://ohho-0g07i44qa70ce331.6f68-ohho-0g07i44qa70ce331-1304584431/icon/default_img.png"></image>
            <view class="flex-center">
              <text>距您</text>
              <text>1230/m</text>
            </view>
          </view>
        </view>
      </block>
    </view>
  </scroll-view>

bindscroll="swichNav"函数

swichNav: function (e) {
    console.log(e.currentTarget);
  },




回答关注问题邀请回答
收藏

4 个回答

  • Demons
    Demons
    2021-12-24

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2021-12-24
    有用
    回复
  • brave
    brave
    2021-12-24

    具体描述一下?

    2021-12-24
    有用 1
    回复
  • 会-Summer
    会-Summer
    2021-12-24

    我们以前的项目一直都是根据滚动距离估算的,有段时间没了解了,现在还是取不到id吗?

    2021-12-24
    有用
    回复
  • 游戏结束べ
    游戏结束べ
    2021-12-24
    scroll-into-view是滑动到这个id的位置,并不是只显示这个id的内容
    


    2021-12-24
    有用
    回复
登录 后发表内容