vue中使用v-on綁定事件中,獲取$event.currentTarget,日誌打印爲null

問題:vue中使用v-on綁定事件中,獲取$event.currentTarget,日誌打印爲nullhtml

dom結構:
<li @click="clickEvent('hello',$event)">
     <span>內部元素</span>
 </li>


事件代碼:
clickEvent(str,event){
    console.log(event)
}

 結果爲:vue

    

問題說明:dom

e.currentTarget是一個瞬時的值,當打印event後,等到展開log信息時,冒泡事件已經結束,因此當前currentTarget是nullspa

解決方法:日誌

console.log(event.currentTarget)  能正確顯示htm

代碼中正常使用event.currentTarget也沒有問題blog

相關文章
相關標籤/搜索