gpt4 book ai didi

javascript - 查询 : Keypress not working on first press

转载 作者:行者123 更新时间:2023-11-29 14:49:33 26 4
gpt4 key购买 nike

这是我的代码

  $(currentClass).keypress(function (e) {

if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
return false;
}

});

唯一的问题是,每次我第一次按下一个键时,无论是字母还是数字,它都会显示在我的内容可编辑跨度标签中。然而,我第二次按字母键时代码起作用了,它只接受数字。我不知道第一次按键时这段代码有什么问题。

最佳答案

使用 JQuery 的 .on() 方法。

$(currentClass).on("keypress",function (e) {

if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
return false;
}

});

关于javascript - 查询 : Keypress not working on first press,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27814908/

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