How can I disable all keyboard keys?

后端 未结 4 572
你的背包
你的背包 2021-01-12 09:14

I am searching for a possibility to disable all keyboard keys in a textarea. I found some examples on the web to disable some single ones but how can I disable the whole key

4条回答
  •  借酒劲吻你
    2021-01-12 10:00

     document.getElementById('ID OF TEXTAREA').onkeypress=function(){return false;}
    

    Dunno why you want to do that if you can just disabled it.

提交回复
热议问题