您好,登錄后才能下訂單哦!
前言
在 v-for 循環(huán)語(yǔ)句上,定義一個(gè)點(diǎn)擊事件 傳入兩個(gè)參數(shù)(當(dāng)行數(shù)據(jù)、當(dāng)前事件對(duì)象),如下代碼片段,當(dāng)前事件對(duì)象必須加上 ‘$' 符號(hào)
<template> <div> <ul> <li v-for="(item, index) in arrData" :key="index" @click="operate(item, $event)" > {{ item.title }} </li> </ul> </div> </template> <script> export default { data() { return { arrData: [ { id: 1, title: '第一條數(shù)據(jù)' }, { id: 2, title: '第二條數(shù)據(jù)' } ] }; }, methods: { operate(item, event) { console.log(item); console.log(event); } } }; </script>
不加'$‘報(bào)錯(cuò):
加上'$‘: 點(diǎn)擊行之后獲得當(dāng)前行數(shù)據(jù) 以及當(dāng)前事件對(duì)象
如果本篇文章對(duì)你有幫助的話,很高興能夠幫助上你。
補(bǔ)充知識(shí):vue獲取當(dāng)前點(diǎn)擊對(duì)象的下標(biāo),和當(dāng)前點(diǎn)擊對(duì)象的內(nèi)容
如下所示:
<li v-for="(item,index) in tabList" v-on:click="addClass(index,$event)" >{{item.title}}</li>
data里面聲明:
data() { return { tabList: [ { id: 0, title: "首頁(yè)1" }, { id: 1, title: "首頁(yè)2" }, { id: 2, title: "首頁(yè)3" } ], current:0 }; },
methods: { addClass: function(index,event) { this.current = index; //獲取點(diǎn)擊對(duì)象 var el = event.currentTarget; console.log("當(dāng)前對(duì)象的內(nèi)容:"+el.innerHTML); console.log(this.current) }
以上這篇vue v-for 點(diǎn)擊當(dāng)前行,獲取當(dāng)前行數(shù)據(jù)及event當(dāng)前事件對(duì)象的操作就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。