大家好,又见面了,我是你们的朋友全栈君。
vue 中 input事件
input事件的使用
<div
:id="inputId"
:class="['textarea_content_right']"
:contenteditable="true"
@input="changeText($event)"
v-text= "currentValue"
></div>
data() {
return {
currentValue: "",
}
},
watch: {
currentValue(newVal) {
console.log(newVal)
}
},
methods: {
changeText(event) {
this.currentValue = event.target.innerText;
console.log(newVal)
},
}
当input、select、textarea 元素的 value 被修改时,会触发 input 事件。同时,input 事件也适用于启用了 contenteditable 的元素,以及开启了 designMode 的任意元素。在contenteditable 和 designMode 的情况下,事件的 target 为当前正在编辑的宿主。
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/131764.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...