表单通过回车键提交,除了在javascript的文本区域中?
我有这个表单,它通过按 Enter 键提交。
我希望它能够在文本区域之外运行,它应该具有在文本区域中添加新行的通常行为
I have this form where it submits by pressing enter key.
I want it to function except for textarea, where it should has it usual behavior adding a new line in text-area
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认行为是,如果您在文本区域内按 Enter 键,则不会提交表单,如以下实时演示。它只是在文本区域内添加一个新行。为此,您不需要任何 JavaScript。另一方面,如果用户在普通文本框中按 Enter 键,则提交表单。
The default behavior is that the form doesn't submit if you press enter inside a textarea as seen in the following live demo. It simply adds a new row inside the textarea. You don't need any javascript for this. On the other hand if the the user presses enter while inside a normal textbox the form is submitted.