In IE8 enter key in a form does not work

后端 未结 14 2495
失恋的感觉
失恋的感觉 2020-12-17 08:55

I have a problem that in IE8 the enter does not work to submit a form. I have generated a test page to expose this problem. It seems that displaying the form in the on

14条回答
  •  暖寄归人
    2020-12-17 09:29

    Found a working solution.

    Make the submit button invisible instead of using display:none;

    input#submit {
    color: transparent;
    background: transparent;
    border: 0px;
    }
    

提交回复
热议问题