从jsf <h:commandbutton>标签到html <input />标签</h:commandbutton>的转换不正确

时间:2014-05-08 08:47:14

标签: html jsf jsf-2

我遇到<h:commandButton/> tag的问题。如果我使用浏览器检查元素看到转换的HTML代码,则输入元素标记不会关闭。

原始输出

// JSF

<h:commandButton value="reset" type="reset" />

// HTML输出

<input type="reset" name="xxx" value="reset" />

预期输出:

// JSF

<h:commandButton value="reset" type="reset"/>

// HTML输出

<input type="reset" name="xxx" value="reset">(Not closing i have seen by inspect element)

为什么会发生这种情况,任何人都可以从中获得帮助吗?

0 个答案:

没有答案