码迷,mamicode.com
首页 > 其他好文 > 详细

altKey,ctrlKey,shiftKey

时间:2014-09-19 13:44:15      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:http   java   ar   div   art   on   c   html   ad   

<1>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script type="text/javascript">

    </script>
</head>
<body>

<!--altKey属性,bool类型,表示发生事件的时候alt键是否被按下-->
<!--ctrlKey属性,bool类型,表示发生事件的时候ctrl键是否被按下-->
<!--shiftKey属性,bool类型,表示发生事件的时候shift键是否被按下-->


<input type="button" value="ctrl点击" onclick="if(window.event.ctrlKey==true){alert('按下了ctrl键')} else{alert('普通点击')}" />

<input type="button" value="alt点击" onclick="if(window.event.altKey==true){alert('按下了alt键')} else{alert('普通点击')}" />


<input type="button" value="shift点击" onclick="if(window.event.shiftKey==true){alert('按下了shift键')} else{alert('普通点击')}" />
</body>
</html>


altKey,ctrlKey,shiftKey

标签:http   java   ar   div   art   on   c   html   ad   

原文地址:http://www.cnblogs.com/mengfanrong/p/3981184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!