Submitting a form by pressing enter without a submit button

前端 未结 20 1845
你的背包
你的背包 2020-11-22 06:46

Well I am trying to submit a form by pressing enter but not displaying a submit button. I don\'t want to get into JavaScript if possible since I want everything to work on a

20条回答
  •  一个人的身影
    2020-11-22 07:08

    Try:

    
    

    That will push the button waaay to the left, out of the screen. The nice thing with this is, you'd get graceful degradation when CSS is disabled.

    Update - Workaround for IE7

    As suggested by Bryan Downing + with tabindex to prevent tab reach this button (by Ates Goral):

    
    

提交回复
热议问题