event.shiftKey - Web API 接口参考 编辑
概述
表明当事件触发时,SHIFT键是否处于按下状态.
语法
var bool = event.shiftKey;
bool
的值为 true
或 false
例子
<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>按下一个字符键,尝试同时按下SHIFT键.<br /> 你也可以同时按下SHIFT键和ALT键.</p> </body> </html>
规范
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论