Tag: jquery hotkeys

使用jQuery热键无法在Firefox中覆盖ctrl + s

我正在使用jQuery Hotkeys插件: http : //code.google.com/p/js-hotkeys/ 这是我正在使用的代码: $(document).bind(‘keydown’, ‘Ctrl+s’, function(event) { alert(‘saving?’); return false; }); 在Chrome中,它工作正常,Ctrl + s默认function被覆盖,但在Firefox中,它会触发警报,并且还会尝试保存html页面。 我知道必须要有它才能使它工作,F​​irefox中的Wordpress让你按ctrl + s保存。 有任何想法吗?