我想当用户在文本字段中输入一些值并提交时,该按钮应该被禁用。
但是当按钮不在表单中时它才被禁用:
作品
<h:inputText/>
<h:commandButton value="btn1" action="#{bean2.showClicked}" onclick="this.disabled=true;" />
不起作用
<h:form>
<h:inputText/>
<h:commandButton value="btn1" action="#{bean2.showClicked}" onclick="this.disabled=true;" />
</h:form>
我需要在表单中禁用按钮。