登陆页面的form表单中存在radio时,鼠标点到radio时,回车提交快捷键功能消失的解决办法

来源:互联网 发布:中小学信息化数据库 编辑:程序博客网 时间:2024/04/30 18:00

请勿盗版,转载请加上出处http://blog.csdn.net/yanlintao1

登陆表单

<form action="/index/indexone" method="post" id="loginform">

     用户名:<input type="text" name="username"></input><br/>
     密&nbsp;&nbsp;码:<input type="password"  name="password"></input><span id="erroinfo"><font></font></span><br/>
     <input type="radio" name="fudaoyuan" value="1"></input>辅导员                       
     <input type="submit" value="登录"  id="login"></input>
     <input type="reset" value="取消" ></input><br/>

</form>

对登陆submit进行监听

<script type="text/javascript">
$(function(){

//监听enter,这里13便是enter的编号
$(window).keydown(function(event){
if (event.keyCode == 13) {
$("#login").trigger('click');
}
});
});
</script>

0 0