Differences between OnKeyUp, OnKeyDown and OnKeyPress?

20

When exactly are they fired? And what are the contexts of use for each?

I ask this because of all the times I had to use always I solved only with onkeyup . Although the doubt is in javascript it reflects in other languages as well.

    
asked by anonymous 12.06.2015 / 15:56

3 answers

20

They perform different functions.

onkeydown is the first to fire and we can stop it. If you have an input you can prevent the pressed key from typing in the input if you have an associated event handler.

onkeypress is the second to fire. Note that this event is not triggered on keys that do not generate characters, such as F1 ~ F12, tab, esc, etc. Note that keypress generates different results for large and small print.

onkeyup is triggered when the key is dropped and its input added / registered in the DOM. In the case of an input the new character is inserted and can not cancel, that is, an input will receive the character.

Examples:

keydown

An input that ignores vowels: link

var input = document.querySelector('input');
var ignorar = ['a', 'e', 'i', 'o', 'u'];
input.addEventListener('keydown', function (e) {
    var char = e.keyCode || e.which;
    var letra = String.fromCharCode(char).toLowerCase();
    if (ignorar.indexOf(letra) != -1) e.preventDefault();
});

keypress

Distinguish large fine print: link

function log(e) {
    var char = e.code || e.keyCode || e.which;
    var res = [e.type, char, String.fromCharCode(char), '<br />'].join(' | ');
    document.getElementById('res').innerHTML += res;
};

input.addEventListener('keydown', log);
input.addEventListener('keypress', log);

This code will give

keydown | 77 | M | 
keypress | 109 | m | 

when we press m small and

keydown | 77 | M | 
keypress | 77 | M | 

no M big.

keyup

Adding fields: link

var inputs = $$('body > input').addEvent('keyup', function (e) {
    var numerico = this.value.replace(/[^0-9\.]/g, '');
    if (!numerico) this.value = this.value.slice(0, -1);
    var soma = inputs.map(function (input) {
        return parseFloat(input.value) || 0;
    }).reduce(function (a, b) {
        return a + b;
    }, 0);
    $$('body div > input').set('value', soma);
});

This is MooTools code, but in the background runs a script with every keyup and sums the values of all inputs in a field with the total.

    
12.06.2015 / 16:29
2

KeyPress, KeyDown, and KeyUp are keyboard triggered events.

KeyDown happens first (when the key is down). The KeyPress happens second (when the text is typed). The KeyUp happens after the key is pressed (when the key is up and when the text entry is complete).

    
12.06.2015 / 16:24
2

According to this link :

  

keydown

     

Fires when the user depresses the key. It repeats while the user keeps the key depressed.

     

keypress

     

Fires when an actual character is being inserted in, for instance, a text input. It repeats while the user keeps the key depressed.

     

keyup

     

Fires when the user releases a key, after the default action of that key has been performed

Or, in kids: The difference between them is the order they occur, the moment the user presses a key. In theory, events keydown and keyup represent the key being pressed or released, respectively, while the keypress event represents a character being typed (and repeats if the user keeps holding the key). The point is that this theory is not implemented in the same way by all browsers.

    
12.06.2015 / 16:26