Submitting a form by pressing enter without a submit button

前端 未结 20 1585
你的背包
你的背包 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:19

    I've used:

    
    

    and:

     .hidden {
            border:0;
            padding:0;
            font-size:0;
            width: 0px;
            height: 0px;
        }
    

    in the .css file. It worked magically for me too. :)

提交回复
热议问题