<input type="text" id="uname" v-model="uname" />
我需要编写一个插件自动,设置 uname 的值; 通过 ele.value='abc',可以设置上 但是,鼠标点击 input 输入框后,就被还原了,应该和 类似 Vue 这种框架的双向绑定有关系;
然后搜到了如下的方法,但是没有生效
$input = document.querySelector('#uname)
$input.value='abc'
$input.dispatchEvent(new Event('input', {bubbles:true}))
1
Puteulanus 2023-11-04 15:13:21 +08:00
|
2
ksc010 OP @Puteulanus 感谢,刚发现 上面代码又可以了 可能遗漏了什么一开始
|