我有这个 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>
我添加了这个 JS 是为了防止在执行代码时双击:
onclick="this.disabled=true"
但是当我用 F5 刷新网页时,该按钮在页面加载时被禁用。我怎样才能防止这种情况?