我需要捕获按下的键是0-9 ,包括数字键盘中的数字。我写了一个检查它的函数,但它不适用于小键盘数字
function getKeyVal(e) {
var order = String.fromCharCode(e.keyCode);
return /^\s*\d+\s*$/.test(order)
}
String.fromCharcode
从小键盘键1返回“ a ” 。
有人可以帮忙吗?
我需要捕获按下的键是0-9 ,包括数字键盘中的数字。我写了一个检查它的函数,但它不适用于小键盘数字
function getKeyVal(e) {
var order = String.fromCharCode(e.keyCode);
return /^\s*\d+\s*$/.test(order)
}
String.fromCharcode
从小键盘键1返回“ a ” 。
有人可以帮忙吗?