WXML:
<view id="tapTest" data-hi="WeChat" data-id="99" bindtap="tapName"> Click me! </view>
JS:
Page({ tapName: function (event) { //获取数据详情所有内容; console.log(event) //获取数据绑定的data- 所有的数据 console.log(event.currentTarget.dataset.id); console.log(event.currentTarget.dataset.hi); //获取数据所有的id console.log(event.currentTarget.id); } })
评论前必须登录!
注册