网站开发项目意义,爱字幕app制作视频软件下载,做网站 带宽 多少,大足网站建设微信小程序中的点击事件跟vue中的不一样#xff0c;不是使用click#xff0c;而是使用bind:tap wxml中定义按钮组件
button bind:taponClick点击/buttonjs中定义点击处理事件
// index.js
Page({data: {message: 尚未点击},onClick() {console… 微信小程序中的点击事件跟vue中的不一样不是使用click而是使用bind:tap wxml中定义按钮组件
button bind:taponClick点击/buttonjs中定义点击处理事件
// index.js
Page({data: {message: 尚未点击},onClick() {console.log(按钮被点击了);this.setData({message: 按钮已被点击});}
});点击传参给事件处理
通过data-*属性传参(推荐)
button bind:tapaddScore data-typehomeTeam data-score3 classbtn score-33/buttonjs中获取参数 addScore(e) {const dataset e.currentTarget.datasetconst {score,type,} datasetif (type homeTeam) {this.setData({homeTeam.score: Number(this.data.homeTeam.score) Number(score)})}},this.setData()用于更新数据并触发页面更新。