在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
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); } })
|
请发表评论