
The ctrlkey mouse event property is used to show whether the CTRL key is pressed or not when the mouse button is clicked.
Example
You can try to run the following code to learn how to implement ctrlKey Mouse event in JavaScript.
Press and hold CTRL key and then click here.function funcCtrlKey(event) { if (event.ctrlKey) { alert("CTRL key: Pressed"); } else { alert("CTRL key: NOT Pressed"); } }
以上就是在JavaScript中,ctrlKey鼠标事件的作用是什么?的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1551140.html
微信扫一扫
支付宝扫一扫