使用F5刷新网页时禁用按钮

时间:2012-11-03 15:00:54

标签: javascript jsf jsf-2

我有这个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刷新网页时,按钮在页面加载时被禁用。我怎么能阻止这个?

1 个答案:

答案 0 :(得分:0)

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