我想捕获键盘按键代码并将其转换为字符。我正在使用 String.fromCharCode javascript 函数,但它仅适用于计算机键盘,不适用于移动键盘。任何帮助将不胜感激。
$(".inputsmeter").keyup(function (e) {
let key = e.which;
let c = String.fromCharCode(key);
alert(c);
}); Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
这在我的 iOS Safari 15 上按预期运行。 在输入中键入
a将看到警告打印: