uniapp前端开发 input在输入未选择时,也就是文字还带有下划线的时候,无法获取对应的内容,研究发现只要使用@blur可以获取到到对应的值。
html
<input type="text" @input="onKeyInput" @blur="onKeyInput" placeholder="请输入姓名" placeholder-class="plmargin" name="keyword"
maxlength="8" v-model="keyword" />
js
onKeyInput: function(event) {
console.log(event)
this.keyword = event.target.value
},