gpt4 book ai didi

javascript - onkeyup vue js获取文本字段值

转载 作者:数据小太阳 更新时间:2023-10-29 05:47:47 24 4
gpt4 key购买 nike

在不使用 v-model 的情况下,如何在输入时检索文本字段的值?如果可能,不使用任何方法。

<input type="text" class="form-field"
v-on:keyup="data.sample = this.target.value">

我用过

  • 这个值
  • this.target.value

  • e.target.value

最佳答案

解决方法是:

<input type="text" v-on:keyup="this.$data.name = $event.target.value">

来自 documentation :

When listening to native DOM events, the method receives the native event as the only argument. If using inline statement, the statement has access to the special $event property: v-on:click="handle('ok', $event)"

jsfiddle

关于javascript - onkeyup vue js获取文本字段值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38423262/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com