发布于 2024-10-07 12:16:34 字数 249 浏览 1 评论 0 原文

标签和 之间的具体区别是什么?

与我们使用 而不是 相比,有什么优势?

what is the specific difference between <html:submit tag and <input type="submit "?

what is the advantage rather than we use <html:submit instead of <input type="submit"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抚笙 2024-10-14 12:16:34

输入类型...

是一个 HTML 标签,因此在客户端从浏览器进行解释。

html:提交...

是一个 struts 标签库,在服务器端进行评估,评估后它会发出相应的 HTML 标签,该标签是

input type...

is a HTML tag and hence is interpreted at client side from browsers.

html:submit...

is a struts tag library, is evaluated server side and after evaluation it emits the corresponding HTML tag which is <input type....

梦冥 2024-10-14 12:16:34

使用“html:”的好处是它们可以与支持表单 bean 一起使用。

优点(对于其他 html: 标签)

  • 将填充在操作中设置的表单变量,
  • 当您尝试使用 DNE 的表单属性时,您将在 jsp 页面上收到错误。

而言,我想不出使用它比 除了拥有所有的明显优势您的表单标签“看起来相同”。

Benefits of using 'html:' is that they work with the backing form bean.

Advantages (for other html: tags)

  • will populate with form variables set in the action
  • you will get errors on your jsp page when you try to use a form property that DNE.

As far as <html:submit goes, I can't think of any clear advantage of using it over <input type="submit" other than having all of your form tags "look the same".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文