我有一段时间没有使用 jquery.hotkeys.js 了,但我似乎连最基本的测试都无法在任何当前浏览器中工作。
使用 Ver 0.8 我也尝试了其他版本的 jQuery,但坚持使用 1.4.2 进行测试,因为这是 John Resig 在他的示例中所使用的。
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="/js/jquery.hotkeys.js"></script>
<script>
jQuery(document).ready(function(){
$(document).bind('keydown', "f", function() {
alert("click");
return false;
});
});
</script>
</head>
<body>