如何防止用戶雙擊按鈕?我一直在尋找互聯網,沒有在我的項目中爲我工作。 你能舉個例子嗎?防止雙擊asp.net按鈕ASP.NET C#
我有這並不起作用
<script type = "text/javascript">
function DisableButton() {
document.getElementById("<%=Button1.ClientID %>").disabled = true;
}
window.onbeforeunload = DisableButton;
</script>
雙擊是什麼意思?要防止用戶雙擊兩次提交按鈕? –
您可以嘗試一下:http://tgynther.blogspot.com.br/2011/07/aspnet-prevent-button-double-click.html –
爲什麼不在Button1中點擊「Button1.enabled = false」點擊事件而不是JavaScript函數..? –