Onkeydown()不适用于IE中的删除和退格

时间:2009-03-20 04:25:01

标签: javascript events javascript-events event-handling

有谁知道为什么onkeydown()事件对IE中的删除和退格键不起作用?它适用于数字和字符键。

1 个答案:

答案 0 :(得分:0)

你确定吗? ..以下看到IE上的删除和退格很好:

<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>