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

时间:2013-02-12 20:24:09

标签: html jsf button

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

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

1 个答案:

答案 0 :(得分: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生成的。