Submitting a form on 'Enter' with jQuery?

后端 未结 14 1913
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 14:45

I have a bog-standard login form - an email text field, a password field and a submit button on an AIR project that\'s using HTML/jQuery. When I hit Enter on the form, the

14条回答
  •  轮回少年
    2020-11-22 15:29

    Try this:

    var form = document.formname;
    
    if($(form).length > 0)
    {
        $(form).keypress(function (e){
            code = e.keyCode ? e.keyCode : e.which;
            if(code.toString() == 13) 
            {
                 formsubmit();
            }
        })
    }
    

提交回复
热议问题