小程序点击事件改变样式(普通js鼠标点击事件)
Posted 酸suan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序点击事件改变样式(普通js鼠标点击事件)相关的知识,希望对你有一定的参考价值。
1.wxml中
<view class="column">
<view class="body-view {{num==1?‘active‘:‘‘}}" bindtap="bindChoice" data-num=‘1‘>推荐</view>
<view class="body-view {{num==2?‘active‘:‘‘}}" bindtap="bindChoice" data-num=‘2‘>热门</view>
<view class="body-view {{num==3?‘active‘:‘‘}}" bindtap="bindChoice" data-num=‘3‘>分类</view>
</view>
2.js中
data{
num:1
}
bindChoice:function(e){
console.log(e);
this.setData({
num:e.target.dataset.num
})
}
以上是关于小程序点击事件改变样式(普通js鼠标点击事件)的主要内容,如果未能解决你的问题,请参考以下文章