How to disable full keyboard keys using javascript or jquery?

后端 未结 2 619
忘掉有多难
忘掉有多难 2020-12-10 08:17

I want to disable full key boards keys using java-script or jQuery. and is it possible to disable to keyboard using php script ?

相关标签:
2条回答
  • 2020-12-10 08:38

    try this

    document.onkeydown = function (e) {
            return false;
    }
    

    for specific area try this

    $(".class").keydown(function(event) { 
        return false;
    });
    
    0 讨论(0)
  • 2020-12-10 08:51

    Try this .

    $(document).keypress(function(e) {
        return false;
    });
    
    0 讨论(0)
提交回复
热议问题