gpt4 book ai didi

javascript - 仅当键是字母或数字时才对 keyup 发出警报

转载 作者:可可西里 更新时间:2023-11-01 02:13:13 24 4
gpt4 key购买 nike

我想在 keyup 事件上显示警报,但前提是键是字母或数字,而不是 shift、tab 等。

<input type='text' id='hi />

或除 tab、shift、ctrl、enter 之外的任何键

有人知道吗?

最佳答案

您必须将“keyup”事件附加到文本框,并在事件内部检查 keycodes你想要:

$("#hi").bind("keyup", function(e) {
//on letter number
if (e.which <= 90 && e.which >= 48)
{
alert('hello');
}
});

关于javascript - 仅当键是字母或数字时才对 keyup 发出警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5271129/

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