2017-04-10 37 views
1

我需要在点击按钮后禁用搜索按钮。这需要附加在以下代码中。如何在点击后禁用搜索按钮

<form class="search-head" id="frmSearch" action="<%= resultString %>" method="get"> 
    <input name="q" class="<%=cssName%> search-tags" id="tags" value="q" maxlength=50 /> 

    <input type="hidden" name="_charset_" value="utf-8" /> 
    <input type="hidden" id="searchLabel" name="searchLabel" value='<%=currentStyle.get("searchLabel", "")%>' /> 
     <c:if test="${enableSpringerSearch eq true}"> 
      <button type="button" class="change-search-engine">${springerButtonLabel}</button> 
     </c:if> 
    <button type="submit"><fmt:message key="label_button"/></button> 

任何帮助将不胜感激!

+0

那你审视自己?看看onclick事件。 –

回答

0

您可以创建一个单独的函数来处理它:

document.getElementById("idOfButton").onclick = function() { 
    //disable 
    this.disabled = true; 
} 
+0

谢谢。但是我怎么能把这个嵌入到上面的代码中。我可以在

+0

之后添加一个id给你的按钮,比如'

0

function disableBtn() { 
 
    document.getElementById("btn").disabled = true; 
 
}
<input type="hidden" name="_charset_" value="utf-8" /> 
 
<input type="hidden" id="searchLabel" name="searchLabel" value='<%=currentStyle.get("searchLabel", "")%>' /> 
 
    <c:if test="${enableSpringerSearch eq true}"> 
 
     <button id="btn" type="button" onclick="disableBtn()" class="change-search-engine">search</button> 
 
    </c:if> 
 
<button type="submit" ><fmt:message key="label_button"/></button>

+0

它不起作用,代码显示在搜索图标附近。 \t '/> function disableBtn(){ document.getElementById(“btn”)。disabled = true; } –