vue input怎么拿到etarget
在Vue中,可以使用v-on指令来监听事件,并使用$event来传递事件对象。例如:
<template>
<div>
<input type="text" v-on:input="handleInput($event)">
</div>
</template>
<script>
export default {
methods: {
handleInput(event) {
console.log(event.target.value);
}
}
}
</script>
在上面的例子中,v-on:input指令监听了input事件,并调用了handleInput方法,使用$event传递了事件对象。在handleInput方法中,可以通过event.target来获取输入框的DOM元素,从而获取输入框的值。
原文地址: https://www.cveoy.top/t/topic/brGd 著作权归作者所有。请勿转载和采集!