下面的方法从 AZ 和 0-9 返回任何键,当我按下 shift 键 + 4 时,它返回相同的代码 52。
function keyUpEvent(e)//onkeyup event
{
var chr = String.fromCharCode(e.keyCode);//converts the keycode into a character
alert(chr);//alerts the character
}
但是当按下带有 shift 键组合的相应键时,我需要显示$ 或 % 。