有谁知道为什么onkeydown()
事件对IE中的删除和退格键不起作用?它适用于数字和字符键。
答案 0 :(得分:0)
<html>
<head>
<script type="text/javascript">
function keypress(e)
{
var keycode;
if (window.event) // IE
{
keycode = e.keyCode;
}
else if (e.which) // Netscape/FF/Op
{
keycode = e.which;
}
alert(keycode);
}
</script>
</head>
<body>
<form>
<input type="text" onkeydown="return keypress(event)" />
</form>
</body>
</html>