h:commandbutton的类型之间究竟有什么区别?

问题描述 投票:1回答:1

嗨,我有一个我一直想问的问题。我在谈论不同类型的type标签。我读了一下,但大多数页面只有不同标签的名称,仅此而已。这样一个CommandButton的范围是什么,forms,也许是tags?使用标签textfields按钮后用哪种reset清洁?特别是(如果与HTML button有一些差异)我想知道关于JavaServer Faces commandButton.

我正在寻找一些先进的规格或东西。谢谢。

html jsf button
1个回答
5
投票

<h:commandButton type="submit">(默认)生成HTML <input type="submit"><h:commandButton type="reset">生成HTML <input type="reset"><h:commandButton type="button">生成HTML <input type="button">

这就是全部,真的。这也是在<h:commandButton> tag documentation中指定的。有关HTML表示之间的功能差异,请查看HTML forms spec。请注意,这部分完全超出了JSF的范围。

毕竟,如果你在学习JSF之前学习basic HTML可能会有所帮助,因为这基本上是JSF生成的。

© www.soinside.com 2019 - 2024. All rights reserved.