Was the "CTRL" key pressed when the mouse button was clicked:
if (event.ctrlKey) {
text = "The CTRL key was pressed!";
} else {
text = "The CTRL key was NOT pressed!";
}
Try it Yourself »
The ctrlKey
property returns true
if the CTRL key is pressed when a mouse event occurs.
Otherwise it returns false
.
The ctrlKey
property is read-only.
event.ctrlKey
Return Value: | A Boolean. Returns true if the CTRL key was pressed when a mouse event occurs.Otherwise it returns false . |
---|---|
DOM Version: | DOM Level 2 Events. |
event.ctrlKey
is a DOM Level 2 (2001) feature.
It is fully supported in all browsers:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | 9-11 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!