jsp页面中可以有多个表单吗?
我需要在 jsp 页面中使用多个表单。是否可以?这是一个好的做法吗?我该怎么办?举个例子。
谢谢。
I need more then one form in a jsp page. Is it possible? Is this a good practice? And how can i do? Give me example.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,只要不嵌套它们就可以。这并不是专门的 JSP 限制,而是 HTML 限制(您知道,JSP 所做的只是输出 HTML/CSS/JS,而 Web 浏览器检索和理解的所有内容都是 HTML/CSS/JS)。如果这些表单彼此不相关,这当然是一个很好的做法。例如,同一页面中的登录表单、搜索表单和联系表单。
Yes, it's possible as long as you don't nest them. This is not specifically a JSP restriction, but a HTML restriction (you know, all JSP does is outputting HTML/CSS/JS and all the webbrowser retrieves and understands is HTML/CSS/JS). It's certainly a good practice if those forms are not related to each other. E.g. a login form, a search form and a contact form in the same page.