JavaScript or jQuery event handlers for “Ctrl”/“Shift” + mouse left button click

后端 未结 3 1820
余生分开走
余生分开走 2020-12-04 17:19

Is it possible to handle such events as:

  • Ctrl + mouse left button click;
  • Shift + mouse left button click;
  • Alt
3条回答
  •  孤城傲影
    2020-12-04 17:51

    If you use JQuery plugin called hotkeys you can handle the special keys below.

    $(document).bind('keydown', 'Ctrl+c', fn);
    

提交回复
热议问题