diff options
Diffstat (limited to 'files/zh-cn/web/api/event.shiftkey/index.html')
-rw-r--r-- | files/zh-cn/web/api/event.shiftkey/index.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/event.shiftkey/index.html b/files/zh-cn/web/api/event.shiftkey/index.html new file mode 100644 index 0000000000..1c79d02d0a --- /dev/null +++ b/files/zh-cn/web/api/event.shiftkey/index.html @@ -0,0 +1,40 @@ +--- +title: event.shiftKey +slug: Web/API/event.shiftKey +translation_of: Web/API/MouseEvent/shiftKey +--- +<p>{{ ApiRef() }}</p> +<h3 id="Summary" name="Summary">概述</h3> +<p>表明当事件触发时,SHIFT键是否处于按下状态.</p> +<h3 id="Syntax" name="Syntax">语法</h3> +<pre class="eval"><em>var bool</em> = event.shiftKey; +</pre> +<p><code>bool</code> 的值为 <code>true</code> 或 <code>false</code></p> +<h3 id="Example" name="Example">例子</h3> +<pre><html> +<head> +<title>shiftKey example</title> + +<script type="text/javascript"> + +function showChar(e){ + alert( + "Key Pressed: " + String.fromCharCode(e.charCode) + "\n" + + "charCode: " + e.charCode + "\n" + + "SHIFT key pressed: " + e.shiftKey + "\n" + + "ALT key pressed: " + e.altKey + "\n" + ); +} + +</script> +</head> + +<body onkeypress="showChar(event);"> +<p><span>按下一个字符键,尝试同时按下</span>SHIFT<span>键.</span><br /> +<span>你也可以同时按下SHIFT键和ALT键.</span></p> +</body> +</html> +</pre> +<h3 id="Specification" name="Specification">规范</h3> +<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent-shiftKey">shiftKey </a></p> +<p>{{ languages( { "pl": "pl/DOM/event.shiftKey" ,"en": "en/DOM/event.shiftKey" } ) }}</p> |