--- title: MouseEvent.shiftKey slug: Web/API/MouseEvent/shiftKey translation_of: Web/API/MouseEvent/shiftKey --- <p>{{APIRef("DOM Events")}}</p> <p><code><strong>MouseEvent.shiftKey</strong></code> 是只读属性,指出触发鼠标事件时是否按住了 <code>shift</code> 键</p> <h2 id="Syntax">Syntax</h2> <pre class="syntaxbox">var <em>shiftKeyPressed</em> = <em>instanceOfMouseEvent</em>.shiftKey </pre> <h3 id="Return_value">Return value</h3> <p>A boolean</p> <h2 id="Example" name="Example">Example</h2> <pre class="brush: js"><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>Press any character key, with or without holding down the SHIFT key.<br /> You can also use the SHIFT key together with the ALT key.</p> </body> </html> </pre> <h2 id="Specifications">Specifications</h2> <table class="standard-table"> <tbody> <tr> <th scope="col">Specification</th> <th scope="col">Status</th> <th scope="col">Comment</th> </tr> <tr> <td>{{SpecName('DOM3 Events','#widl-MouseEvent-shiftKey','MouseEvent.shiftKey')}}</td> <td>{{Spec2('DOM3 Events')}}</td> <td>No change from {{SpecName('DOM2 Events')}}.</td> </tr> <tr> <td>{{SpecName('DOM2 Events','#Events-MouseEvent','MouseEvent.shiftKey')}}</td> <td>{{Spec2('DOM2 Events')}}</td> <td>Initial definition.</td> </tr> </tbody> </table> <h2 id="Browser_compatibility" name="Browser_compatibility">Browser compatibility</h2> <p>{{ CompatibilityTable() }}</p> <div id="compat-desktop"> <table class="compat-table"> <tbody> <tr> <th>Feature</th> <th>Edge</th> <th>Firefox (Gecko)</th> <th>Chrome</th> <th>Internet Explorer</th> <th>Opera</th> <th>Safari</th> </tr> <tr> <td>Basic support</td> <td>{{CompatVersionUnknown}}</td> <td>{{CompatVersionUnknown()}}</td> <td>{{CompatVersionUnknown()}}</td> <td>{{CompatVersionUnknown()}}</td> <td>{{CompatVersionUnknown()}}</td> <td>{{CompatVersionUnknown()}}</td> </tr> </tbody> </table> </div> <div id="compat-mobile"> <table class="compat-table"> <tbody> <tr> <th>Feature</th> <th>Edge</th> <th>Firefox Mobile (Gecko)</th> <th>Android</th> <th>IE Mobile</th> <th>Opera Mobile</th> <th>Safari Mobile</th> </tr> <tr> <td>Basic support</td> <td>{{CompatVersionUnknown}}</td> <td>{{ CompatUnknown() }}</td> <td>{{ CompatUnknown() }}</td> <td>{{ CompatUnknown() }}</td> <td>{{ CompatUnknown() }}</td> <td>{{ CompatUnknown() }}</td> </tr> </tbody> </table> </div> <h2 id="See_also" name="See_also">See also</h2> <ul> <li>{{ domxref("MouseEvent") }}</li> </ul>