快捷键

sym1978 2002-09-09 11:34:02
我表单form1
有三个按钮
分别的
btm1 点击时事件 a1()
btm2 a2()
btm3 a3()
不知道js
如何定义
如我按 Ctrl +1 他就点击 btm1 ,也执行a1()
按 Ctrl +2 他就点击 btm2 ,也执行a2()
按 Ctrl +3 他就点击 btm3 ,也执行a3()

大家来帮帮忙!
...全文
16 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
dylanOK 2002-09-09
  • 打赏
  • 举报
回复
window 的快捷键定义是Alt+ X

如:

<form name=form1>
<input name=btm1 type=button onclick=alert("a1") accessKey=1>
<input name=btm2 type=button onclick=alert("a2") accessKey=2>
<input name=btm3 type=button onclick=alert("a3") accessKey=3>
</form>
qiushuiwuhen 2002-09-09
  • 打赏
  • 举报
回复
<form name=form1>
<input name=btm1 type=button onclick=alert("a1")>
<input name=btm2 type=button onclick=alert("a2")>
<input name=btm3 type=button onclick=alert("a3")>
</form>

<script>
function document.onkeydown(){
with(window.event)
try{document.form1("btm"+String.fromCharCode(keyCode)).click()}catch(e){}
}
</script>
llrock 2002-09-09
  • 打赏
  • 举报
回复
sym1978(爱新)
强烈建议你看些书,几乎每本书都会提到异常处理。

书中有最好的解释!祝你好运
sym1978 2002-09-09
  • 打赏
  • 举报
回复
请问秋水:
catch(e)是什么意思?
另String.fromCharCode(keyCode)).函数的意思呀,
我有想是
一个界面里有很我按钮,
比如我按ctrl+g就按执行a1()
按ctrl+ ->就执行a2()
只按 ->就执行a3()
你可不可以给我个例子呀
qiushuiwuhen 2002-09-09
  • 打赏
  • 举报
回复
<form name=form1>
<input name=btm1 type=button onclick=alert("a1")>
<input name=btm2 type=button onclick=alert("a2")>
<input name=btm3 type=button onclick=alert("a3")>
</form>

忘了加ctrlKey了。。。

<script>
function document.onkeydown(){
with(window.event)
if(ctrlKey)try{document.form1("btm"+String.fromCharCode(keyCode)).click()}catch(e){}
}
</script>

87,993

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 JavaScript
社区管理员
  • JavaScript
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧