gpt4 book ai didi

javascript - 原型(prototype): how to get new input value after some key pressed?

转载 作者:行者123 更新时间:2023-12-02 17:58:56 25 4
gpt4 key购买 nike

我想在客户按任意键后查看电子邮件。这是我的代码:

document.observe("dom:loaded", function() {
$('billing:email').observe('keypress', function(event){
console.log(event.element().value);
});
});

如果我按“D”,日志将打印“”。
如果我在按下“D”后按下“S” - 日志将打印“D”。

如何获取当前实际输入值?

最佳答案

Try the input event instead 。当尝试读取输入更改时,经典的按键/向上/向下/按下事件可能会很模糊。似乎 keypress 在字符打印之前触发。但您也会错过其他事件,例如用户在文本上退格。 Quirks mode has the gory details.

关于javascript - 原型(prototype): how to get new input value after some key pressed?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20732294/

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