Click me! 在相应的Page定义中写上相应的事件处理函数,参数是event。Page({ tapName: function(event) { console.log("获取参数hi:_bindtap">
赞
踩
使用data-* 进行传参,
<view id="tapTest" data-hi="Weixin" bindtap="tapName"> Click me! </view>
在相应的Page定义中写上相应的事件处理函数,参数是event。
Page({
tapName: function(event) {
console.log("获取参数hi:",event.currentTarget.dataset.hi)
}
})
官方文档:
https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxml/event.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。