回车键触发Button
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回车键触发Button相关的知识,希望对你有一定的参考价值。
用回车键触发button按钮事件
<input id="ButOk" type="button" accesskey="" value="登录" onclick="onButOk()" />
要怎么写用java
<head>
<title>huiche.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<SCRIPT type="text/javascript">
function CheckFrm(theForm)
if (trim(theForm.User_ID.value)=="")
alert("请输入用户名");
theForm.User_ID.focus();
return false;
if (trim(theForm.User_Password.value)=="")
alert("请输入密码");
theForm.User_Password.focus();
return false;
theForm.submit();
//return true;
var travel=true
var hotkey=13 /* hotkey即为热键的键值,是ASII码,这里13代表回车键 */
if (document.layers)
document.captureEvents(Event.KEYPRESS)
function gogo(e)
if (document.layers)
if (e.which==hotkey&&travel)
document.forms[0].submit();
else if (document.forms[0])
if (event.keyCode==hotkey)
document.forms[0].submit();
document.onkeypress=gogo ;
</SCRIPT>
</head>
<body>
<Form method="post" name="LoginFrm" action="get.jsp" onsubmit="return CheckFrm(this);">
UserName:<input name="User_ID" type="text" /><br>
Password:<input name="User_Password" type="text" />
<input name="Button" type="button" value="提 交" onclick="javascript:CheckFrm(LoginFrm)">
</Form>
</body>
</html>本回答被提问者采纳 参考技术B <html>
<head>
<script language='javascript'>
function onEnterDown()
if(window.event.keyCode == 13)
onButOk();
function onButOk()
--按钮的事件;
</script>
</head>
<body onkeydown='onEnterDown();'>
<input id="ButOk" type="button" accesskey="" value="登录" onclick="onButOk()" />
</body>
</html>
Delphi6 如何给button按钮添加快捷键(回车)
谢谢了啦 呵呵
按钮不能添加快捷键。但是你可以在button的caption字母前面加个 & 号,比如 确定(&S) ,这样,按下ALT+S键时,就会触发这个button的click事件。如果你想让回车时触发这个button的click事件的话,就得自己写代码了。比如在edit1的keydown里写上 if key = #13 then button1.click 等等,这样,当你在edit1里面填写完东西后,按下回车,这个button的click就触发了。 参考技术A 把按钮的Default的属性设为True,运行时按下回车相当于点击按钮。
以上是关于回车键触发Button的主要内容,如果未能解决你的问题,请参考以下文章
jquery如何解决一个页面,两个搜索按钮,按一下回车键指定触发指定按钮。