https://github.com/tzuryby/jquery.hotkeys
我的代码现在应该关注id为“form”的输入字段。
如果我将其更改为警报(“hi”);它可以工作,但如果我只做focusinput,它什么都不做......
为什么呢? 如何执行此操作并将键“ctrl + k”绑定到输入字段?
function focusinput() {
document.getElementById("form").focus();
}
$(document).ready(function(){
$(document).bind('keyup', 'ctrl+k', function() {
focusinput();
});
});
</script>
<input id="form" name="form" type="text">