Enter button does not submit form (IE ONLY) ASP.NET

后端 未结 9 913
夕颜
夕颜 2020-12-01 10:17

I have a form with a textbox and a button. IE is the only browser that will not submit the form when Enter is pressed (works in FF, Opera, Safari, Chrome, etc.). I found th

9条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-01 10:34

    Basically, a form needs either a button, input type="submit" or an input type="image" to enable the builtin behaviour to submit a form on enter. You shouldn't need a javascript to submit it.

提交回复
热议问题