注册 | 登录 | 设为首页 | 加入收藏
您当前的位置:飞翔学院-IT中国 → 编程开发Asp → 文章内容

做WEB热键

作者:IT 来源:不详 发布时间:2007-9-2 0:09:16
如何让程序检测你的按键,实现WEB热键功能呢?
请看下列代码:

<html>
<head>
<script language='javascript'>
<!--
function issueCommand(x){
    if (document.layers)
    {
          if (x.which==99||x.which==67)
            window.close();
        else if (event.keyCode==112||event.keyCode==80)
            self.print();
        else if (event.keyCode==110||event.keyCode==78)
            alert("Sorry, this is the only song in the List");
    }
    else if (document.all){
        
        if (event.keyCode==99||event.keyCode==67)
            window.close();
        else if (event.keyCode==112||event.keyCode==80)
            self.print();
        else if (event.keyCode==110||event.keyCode==78)
            alert("Sorry, this is the only song in the List");
    }

}


//-->
</script>
</head>

<body>
<script language='javascript'>
<!--
if (document.layers)
    document.captureEvents(Event.KEYPRESS);

document.onkeypress=issueCommand

-->
</script>

<font size=6><u>P</u>ress P</font><p>

<font size=6><u>N</u>ext One</font><p>

<font size=6><u>C</u>lose Window</font><p>
</body>
</html>

是不是很简单.
http://www.itcnw.com/
  • 打印文档
  • 推荐好友
  • 返回顶部
  • 增大字体
  • 减少字体
关于本站 | 工作机会 | 合作网站 | 广告服务 | 市场合作| 联系我们 | 抽奖活动
版权所有: 武汉威俊科技有限公司 Copyright 2005-2007 www.ITCNW.COM All rights reserved