Heim > Fragen und Antworten > Hauptteil
<td contenteditable="true" @input="inputEvent()"></td>
Benötigt das Dom-Element in inputEvent()
中传入td
;
淡淡烟草味2017-05-19 10:13:27
<body>
<p id="app">
<button @click='add'>按钮</button>
</p>
</body>
new Vue({
el: "#app",
methods: {
add(e) {
console.log(e.target)
}
}
})
是这种意思吗??
伊谢尔伦2017-05-19 10:13:27
没有参数的话直接在接收方法中定一个event就可以了
function (event) {}
如果有其他参数,那就用inputEvent($event,other)
给我你的怀抱2017-05-19 10:13:27
// 传一个event
@input="inputEvent($event)"
inputEvent(e) {
console.log(e.path[0]. outerHTML)
}