Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Javascript または jQuery を使用してフル キーボード キーを無効にしたいと考えています。
また、PHPスクリプトを使用してキーボードを無効にすることはできますか?
これを試して
document.onkeydown = function (e) { return false; }
特定の領域についてこれを試してください
$(".class").keydown(function(event) { return false; });
これを試して 。
$(document).keypress(function(e) { return false; });