我必须跟踪alphabet keys
and backspace key
with JavaScript
。我正在使用下面的书面代码来跟踪每个按键,但不幸的是,当我按下时backspace button
,IE
我对这个问题一无所知。
$('#crossword').delegate('.grid_input_holder','keypress',function(event){
alert('keycode : '+event.keycode+' which : '+$(this).val( String.fromCharCode(event.which));
});
提前致谢