Get key value of a key pressed

后端 未结 8 2257
别那么骄傲
别那么骄傲 2021-01-05 01:14

I don\'t find how to get the value of a key pressed. I currently have

$(\'#info_price\').bind(\'keydown\',function(evt){
    alert(evt.keyCode);
         


        
8条回答
  •  独厮守ぢ
    2021-01-05 01:36

    For those who google it now, like I am

    $('input').on('keydown', function(e) {
      console.log(e.key);
    });​
    

提交回复
热议问题