gpt4 book ai didi

javascript - 如何知道事件处理程序中的按键事件是否已完成其工作

转载 作者:行者123 更新时间:2023-11-28 20:25:10 26 4
gpt4 key购买 nike

我有一个文本框的按键事件处理程序。在该事件处理程序中,我正在检查关键代码 46/8(退格/删除)。并在按下这些键后获取文本框的结果值。

假设我的文本框有 1234,我想在删除最后一个字符后获取事件处理程序中文本框的值。这意味着我需要 123,但当我读取文本框的值时,它仍然显示 1234。在事件完成其工作后,如何读取文本框的值?

最佳答案

您想要 keyup 事件:

The keydown, keypress and keyup events fire when the user presses a key.

keydown Fires when the user depresses a key. It repeats while the user keeps the key depressed.

keypress Fires when an actual character is being inserted in, for instance, a text input. It repeats while the user keeps the key depressed.

keyup Fires when the user releases a key, after the default action of that key has been performed.

Source

关于javascript - 如何知道事件处理程序中的按键事件是否已完成其工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17547589/

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