Capturing ctrl+z key combination in javascript

為{幸葍}努か 提交于 2019-11-26 08:59:15

问题


I am trying to capture ctrl+z key combination in javascript with this code:

<html>
<head>
    <title>Untitled Document</title>
</head>
<body>

    <script type=\'text/javascript\'>
        function KeyPress(e) {
            var evtobj = window.event? event : e


            //test1 if (evtobj.ctrlKey) alert(\"Ctrl\");
            //test2 if (evtobj.keyCode == 122) alert(\"z\");
            //test 1 & 2
            if (evtobj.keyCode == 122 && evtobj.ctrlKey) alert(\"Ctrl+z\");
        }

        document.onkeypress = KeyPress;
    </script>

</body>
</html>

Commented line \"test1\" generates the alert if I hold down the ctrl key and press any other key.

Commented line \"test2\" generates the alert if I press the z key.

Put them together as per the line after \"test 1 & 2\", and holding down the ctrl key then pressing the z key does not generate the alert as expected.

What is wrong with the code?


回答1:


  1. Use onkeydown (or onkeyup), not onkeypress
  2. Use keyCode 90, not 122

Online demo: http://jsfiddle.net/29sVC/

To clarify, keycodes are not the same as character codes.

Character codes are for text (they differ depending on the encoding, but in a lot of cases 0-127 remain ASCII codes). Key codes map to keys on a keyboard. For example, in unicode character 0x22909 means 好. There aren't many keyboards (if any) who actually have a key for this.

The OS takes care of transforming keystrokes to character codes using the input methods that the user configured. The results are sent to the keypress event. (Whereas keydown and keyup respond to the user pressing buttons, not typing text.)




回答2:


Ctrl+t is also possible...just use the keycode as 84 like

if (evtobj.ctrlKey && evtobj.keyCode == 84) 
 alert("Ctrl+t");



回答3:


$(document).keydown(function(e){
  if( e.which === 89 && e.ctrlKey ){
     alert('control + y'); 
  }
  else if( e.which === 90 && e.ctrlKey ){
     alert('control + z'); 
  }          
});

Demo




回答4:


90 is the Z key and this will do the necessary capture...

function KeyPress(e){
     // Ensure event is not null
     e = e || window.event;

     if ((e.which == 90 || e.keyCode == 90) && e.ctrlKey) {
         // Ctrl + Z
         // Do Something
     }
}

Depending on your requirements you may wish to add a e.preventDefault(); within your if statement to exclusively perform your custom functionality.




回答5:


For future folks who stumble upon this question, here's a better method to get the job done:

document.addEventListener('keydown', function(event) {
  if (event.ctrlKey && event.key === 'z') {
    alert('Undo!');
  }
});

Using event.key greatly simplifies the code, removing hardcoded constants. It has support for IE 9+, see the documentation here: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key

Additionally, using document.addEventListener means you won't clobber other listeners to the same event. See https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener

Finally, there is no reason to use window.event, its actively discouraged and can result in fragile code. See https://developer.mozilla.org/en-US/docs/Web/API/Window/event




回答6:


This Plugin Made by me may be helpful.

Plugin

You can use this plugin you have to supply the key Codes and function to be run like this

simulatorControl([17,90], function(){console.log('You have pressed Ctrl+Z');});

In the code I have displayed how to perform for Ctrl+Z. You will get Detailed Documentation On the link. Plugin is in JavaScript Code section Of my Pen on Codepen.




回答7:


Use this code for CTRL+Z. keycode for Z in keypress is 122 and the CTRL+Z is 26. check this keycode in your console area

 $(document).on("keypress", function(e) {
       console.log(e.keyCode);
       /*ctrl+z*/
       if(e.keyCode==26)
       {
          //your code here
       }
    });


来源:https://stackoverflow.com/questions/16006583/capturing-ctrlz-key-combination-in-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!