通过一个自定义属性 data-开头,定义参数index="1"
<view bindtap="passQuery" data-index="1">点击事件传参</view>
函数接收参数index
passQuery: function(e){
// 传递的参数
let query = e.currentTarget.dataset['index'];
}
通过一个自定义属性 data-开头,定义参数index="1"
<view bindtap="passQuery" data-index="1">点击事件传参</view>
函数接收参数index
passQuery: function(e){
// 传递的参数
let query = e.currentTarget.dataset['index'];
}
本文标题:点击事件的传参方式
本文链接:https://www.haomeiwen.com/subject/tunvpctx.html
网友评论