| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「JavaScript F5 キー押下を無効にする」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
(ページの作成:「==F5 キー押下を無効にする== [JavaScript] <html> <head> <script> window.document.onkeydown = function() { if (event.keyCode == 8) {…」)
 
1行目: 1行目:
 
==F5 キー押下を無効にする==
 
==F5 キー押下を無効にする==
[JavaScript]
+
[[JavaScript]]
  
  <html>
+
  &lt;html&gt;
  <head>
+
  &lt;head&gt;
   <script>
+
   &lt;script&gt;
 
   window.document.onkeydown = function() {
 
   window.document.onkeydown = function() {
 
     if (event.keyCode == 8) {
 
     if (event.keyCode == 8) {
14行目: 14行目:
 
     }
 
     }
 
   }
 
   }
   </script>
+
   &lt;/script&gt;
  </head>
+
  &lt;/head&gt;
  <body>
+
  &lt;body&gt;
  </body>
+
  &lt;/body&gt;
  </html>
+
  &lt;/html&gt;
 
----
 
----
 
{{include_html banner_html, "!Javascript"}}
 
{{include_html banner_html, "!Javascript"}}

2020年2月15日 (土) 08:03時点における版

F5 キー押下を無効にする

JavaScript

<html>
<head>
  <script>
  window.document.onkeydown = function() {
    if (event.keyCode == 8) {
      alert("BackSpace キーが押されました");
      event.keyCode = null; // キー押下を無効に
    }
    if (event.keyCode == 116) {
      alert("F5 キーが押されました");
    }
  }
  </script>
</head>
<body>
</body>
</html>

テンプレート:Include html banner html, "!Javascript"