Vue中v-on:click怎么传递参数获取到当前元素
//原生js//this指向当前元素在onclick = "fn(this)"//Vue中使用方法v-on:click="fn($event)"methods: {fn: function (e) {// 当前元素e.currentTarget;}}vue动态绑定样式利用三元运算符//在需要的html标...
·
//原生js
//this指向当前元素
在onclick = "fn(this)"
//Vue中使用方法
v-on:click="fn($event)"
methods: {
fn: function (e) {
// 当前元素
e.currentTarget;
}
}
vue动态绑定样式利用三元运算符
//在需要的html标签上
:style="(currentGames.list[2].id==3)?'display:none':'display:flex'"
更多推荐
已为社区贡献2条内容
所有评论(0)