LoginSignup
12
12

More than 5 years have passed since last update.

jQueryで特定のキーを無効にする

Posted at

とても簡単に特定でキーを無効にできる!
例えばこのように書けば、Ctrlキーが使えなくなる。

$(document).keypress(function(e){
    if(e.ctrlKey){
        return false;
    }
});
12
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
12