我有一个输入字段,在按 Enter 时提交,如下所示:
<form action="" method="POST" >
<input type="text" name="name"/>
<input type="submit" style="display:none;" />
</form>
但是当我添加另一个字段时,按 enter 不会做任何事情:
<form action="" method="POST" >
<input type="text" name="name"/>
<input type="text" name="message"/>
<input type="submit" style="display:none;" />
</form>
为什么不?如何解决?
非常感谢!