<input type="text" @chang="go($event.target)">
go(e){
console.log(e)
// <input type="text" οnchang="go(this)">
}
Vue - 函数的参数传递自身 DOM 对象(标签绑定的函数)
最新推荐文章于 2023-10-13 15:35:00 发布
<input type="text" @chang="go($event.target)">
go(e){
console.log(e)
// <input type="text" οnchang="go(this)">
}