我有一个快捷键K.它应该专注于我的输入,但我不希望它K在焦点时插入字母.
K
$(document).keydown(function(event) { if (event.which == 75) { $('input').focus(); } });