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

禁止回车键提交

时间:2015-03-13 18:46:55      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

//当回车键提交时聚焦到当时触发onkeypress事件的元素对象年龄输入框
<script type="text/javascript">
    $(function(){
        $("input").keypress(function(e){
            var keyCode=e.keyCode?e.keyCode:e.which?e.which:e.charCode;
            if(keyCode==13){
                for(var i=0;i<this.form.elements.length;i++){
                    if (this==this.form.elements[i]) break;
                }

                i=(i+1)%this.form.elements.length;
                this.form.elements[i].focus(); //聚焦到提交按钮上
                return false;
                }else{
                    return true;
                }
            }
        )
    });
</script>
</head>
<body>
    <form action="form.php" method="post">
        Name:<input type="text" name="name"/>
        Age:<input type="text" name="age"/>
        <input type="submit" value="提交"/>
    </form>
</body>

禁止回车键提交

标签:

原文地址:http://blog.csdn.net/colorsunlight/article/details/44244393

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