【微信小程序】点击事件传递自定义参数

gengboxb 213 0

使用data-自定义属性名,如:

<!-- 绑定data-id 需要传递的参数 格式为data-XXX -->
<view class="test-data" bindtap="getData" data-id="{{item.id}}">
     <view>数据</view>
</view>

获取:

使用 e.currentTarget.dataset.xxx来获取传递的参数

getData(e){
    const id= e.currentTarget.dataset.id
}

发表评论 取消回复
表情 图片 链接 代码

分享