小程序swiper获取下标

这是wxml, bindchange是实时绑定轮播改变事件

  
      
        
      
  

这是js, e.detail.current 是图下标,从零开始!

onSlideChangeEnd: function (e) {
    var that = this;
    that.setData({
      index: e.detail.current + 1
    })
  },

你可能感兴趣的:(微信小程序,js,微信小程序,获取swiper图片下标,获取swiper下标)