美文网首页小程序开发
小程序:列表项动态绑定事件

小程序:列表项动态绑定事件

作者: 东方晓 | 来源:发表于2021-12-28 14:19 被阅读0次

    2021-12-28 周二

    • 固定绑定事件
     <view class="list" wx:for="{{list}}" wx:key="index" bindtap="goDetail">
    
    • 动态绑定事件
     <view class="list" wx:for="{{list}}" wx:key="index" bindtap="{{item.tap}}" >
    

    data

    list:[
      {
        id:0,
        tap:'goHome'
      },
     {
        id:1,
        tap:'goDetail'
      },
    ]
    

    methods

    goHome(){
       wx.navigateTo({
            url: '../home/home',
          })
    }
    

    相关文章

      网友评论

        本文标题:小程序:列表项动态绑定事件

        本文链接:https://www.haomeiwen.com/subject/czepqrtx.html