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

(转)回车 执行button点击

时间:2015-02-02 15:41:55      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

功能说明:当我们注册或者执行搜索时,输入内容后,不用单击按钮来执行按钮单击事件,而直接通过回车来执行按钮单击事件。只要在text框中onkeydown事件中加入执行按钮的onclick事件就OK了 



代码如下: 

Javascript代码  技术分享
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2.   
  3. <html xmlns="http://www.w3.org/1999/xhtml">  
  4.   
  5. <head>  
  6.   
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
  8.   
  9. <title>验证码</title>  
  10.   
  11. <script type="text/javascript">  
  12.   
  13. function check(){  
  14.   
  15. if(event.keyCode==13){alert("您按下了回车键");}}  
  16.   
  17. </script>  
  18.   
  19. </head>  
  20.   
  21.    
  22.   
  23. <body onload="check()">  
  24.   
  25. <input type="text" id="t1" onkeydown="if(event.keyCode==13){document.getElementById(‘bt‘).click();return false;}" /><button id="bt" onclick="alert(‘回车单击了按钮!!‘)">确  认</button>  
  26.   
  27. </body>  
  28.   
  29. </html>  







代码说明:event.keyCode==13 意思为按下了回车键

(转)回车 执行button点击

标签:

原文地址:http://www.cnblogs.com/wanshutao/p/4267794.html

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