微信小程序bindTap获取对应值

<button bindtap="btn" id="hello" data-cnName="你好" data-name="{{name}}">Button按钮</button>

 

data:{
name: ‘名字 ‘
},
btn(e){
console.log(e.currentTarget.id); // ‘hello‘
console.log(e.currentTarget.dataset.cnname); ‘你好‘ 这里需要注意wxml页面绑定的是cnName,但是获取的时候会转换成小写字母
}

微信小程序bindTap获取对应值

上一篇:微信小程序-wxml模板页面逻辑运算


下一篇:PHP调用微信支付-JSAPI(SDK方式)