Vue中传递event
Vue中传递event在html中的代码如下<li class="circle" listId="0" @click="listChoose($event)"></li>在javascript中的代码如下listChoose: function (event) {this.photoPosition = $(event.target).at...
·
Vue中传递event
在html中的代码如下
<li class="circle" listId="0" @click="listChoose($event)"></li>
在javascript中的代码如下
listChoose: function (event) {
this.photoPosition = $(event.target).attr('listId')
if (this.photoPosition === 5) {
$('.next-icon').hide(1000)
}
$('.warp').animate({
top: -this.photoPosition * 100 + '%'
}, 1000)
},
主要反应的是利用$event来传递event
更多推荐
已为社区贡献3条内容
所有评论(0)