ctrlKey

收藏:0   阅读:37

ctrlKey 事件属性


定义和用法

ctrlKey 事件属性可返回一个布尔值,指示当事件发生时,Ctrl 键是否被按下并保持住。

语法

event.ctrlKey=true|false|1|0


实例

下面的例子可提示当鼠标按键被点击时 "CTRL" 键是否被按住:

<html>
<head>
<script>
function isKeyPressed(event)
{
if (event.ctrlKey==1)
{
alert("The CTRL key was pressed!")
}
else
{
alert("The CTRL key was NOT pressed!")
}
}
</script>
</head>

<body onmousedown="isKeyPressed(event)">

<p>Click somewhere in the document.
An alert box will tell you if you
pressed the CTRL key or not.</p>

</body>
</html>

© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!