`
lan13217
  • 浏览: 483032 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

Ctrl + Key Combination – Simple Jquery Plugin

 
阅读更多
http://www.gmarwaha.com/blog/2009/06/16/ctrl-key-combination-simple-jquery-plugin/
$.ctrl = function (key, callback, args) {
   $(document).keydown(function (e) {
      if (!args)
         args = []; // IE barks when args is null
      if (e.keyCode == key.charCodeAt(0) && e.ctrlKey) {
         callback.apply(this, args);
         return true;
      }
   });
};
$.ctrl('V', function (s) {
   setTimeout(function () {}, 10);
}, function () {
   return true;
});

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics