小编典典

在“点击”事件中检查Ctrl / Shift / Alt键

javascript

我怎么能确定 哪个 Ctrl / Shift/ Alt下面的代码键被按下?

$("#my_id").click(function() {
    if (<left control key is pressed>) { alert("Left Ctrl"); }
    if (<right shift and left alt keys are pressed>) { alert("Right Shift + Left Alt"); }
});

阅读 300

收藏
2020-05-01

共1个答案

小编典典

好吧,这仅适用于IE
8,因此无法在所有浏览器中使用。Microsoft实现了确定按下哪个(右/左)键的功能。

我也发现这篇关于浏览器中的按键,按键,按键事件的奇妙文章。

$('#someelement').bind('click', function(event){

    if(event.ctrlKey) {
      if (event.ctrlLeft) {
        console.log('ctrl-left'); 
      }
      else {
        console.log('ctrl-right');
      }
    }
    if(event.altKey) {
      if (event.altLeft) {
        console.log('alt-left'); 
      }
      else {
        console.log('alt-right');
      }
    }
    if(event.shiftKey) {
      if (event.shiftLeft) {
        console.log('shift-left'); 
      }
      else
      {
        console.log('shift-right');
      }
    }
  });
2020-05-01