禁止表单中,回车键的提交功能。

    $(document).ready(function(){ 
        $("input").keydown(function(e){ 
            var curKey = e.which; 
            if(curKey == 13){ 
                var a=  $(this);
                var na="input[rel='"+(a.attr("rel")*1+1)+"']";
                var b=$(na).focus();
                return false; 
            } 
        }); 
    }); 

 

posted @ 2016-06-30 11:42  阿旭92312  阅读(189)  评论(0编辑  收藏  举报