小程序获取按钮传值 //小程序事件 bindtap + 事件名 如 <view bindtap="skip" data-ccc='2222'>111</view> //接入事件 skip:function(e){ console.log(e.currentTarget.dataset) //打印出来结果 { ccc:2222 } }