gpt4 book ai didi

javascript - 单击后禁用按钮单击并在 10 秒后使用 jquery 或 javascript 在 asp.net web 表单中重新启用

转载 作者:太空宇宙 更新时间:2023-11-04 15:48:40 25 4
gpt4 key购买 nike

<分区>

目前,我正在尝试实现的是在单击后禁用按钮并在 10 秒后重新启用。但它不起作用。HTML代码

<td>
<asp:Button ID="btnResendOTP" runat="server" CssClass="button"
Text="Resend OTP" OnClientClick="disableButton()" OnClick="btnResendOTP_Click"/>
</td>

JS函数

<script type="text/javascript">
function disableButton() {
document.getElementById("<% btnResendOTP.ClientID %>").disabled = true;
setTimeout(function () { document.getElementById("<% btnResendOTP.ClientID %>").disabled = false; }, 10000);
}

</script>

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com