0

我有这个 JSF 按钮:

<h:commandButton style="position:absolute; bottom:12px; right:12%;" styleClass="lbimage" onclick="this.disabled=true" value=" Edit Account " rendered="#{not AccountProfileTabGeneralController.editable}" action="#{bean.editAccount(true)}" >
    <f:ajax render="@form" execute="@form"></f:ajax>
</h:commandButton>&nbsp;  

我添加了这个 JS 是为了防止在执行代码时双击:

onclick="this.disabled=true"

但是当我用 F5 刷新网页时,该按钮在页面加载时被禁用。我怎样才能防止这种情况?

4

1 回答 1

0

onclick="this.disabled=true"并且还使用oncomplete="this.disabled=false"

于 2012-11-03T15:14:19.807 回答