我有这个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刷新网页时,按钮在页面加载时被禁用。我怎么能阻止这个?
答案 0 :(得分:0)
onclick="this.disabled=true"
并使用oncomplete="this.disabled=false"