Javascript 参考手册

HTML DOM 对象

altKey 事件属性

事件对象

定义和用法

altKey 事件属性返回一个布尔值。指示在指定的事件发生时,Alt 键是否被按下并保持住了。

语法

event.altKey=true|false|1|0

实例

实例

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

<html>
<head>
<script>
function isKeyPressed(event)
{
if (event.altKey==1)
  {
  alert("The ALT key was pressed!")
  }
else
  {
  alert("The ALT 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 ALT key or not.</p>

</body>
</html>
尝试一下 »

事件对象

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号