如果我按下Ctrl键,此代码将触发警报:
$('#text').bind('keypress',function(e) { if(e.keyCode==17) { alert("Boo ya"); } });
如果只按下左Ctrl键,只能触发警报?