1

单击几秒钟后,我想禁用服务器端 asp.net 按钮控件,然后触发服务器端事件。我正在尝试使用 setTimeout,但如果我使用 setTimeout,则永远不会触发服务器端事件。有人可以帮忙吗?

   <script type="text/javascript">
    function disableBtn(btnId, dspTxt) {
        var btn = document.getElementById(btnId);
        btn.value = dspTxt;
        setTimeout(btn.disabled = true,1000);
    }
</script>
4

3 回答 3

1

使用 jQuery 怎么样?

$('#buttonId').attr("disabled", true);

或者在一个函数中

function disableBtn(btnId, dspTxt) {
  var button = $(btnId);
  button.attr("disabled", true);
  button.text(dspTxt);
}

http://www.w3schools.com/jsref/prop_select_disabled.asp

于 2012-12-13T10:58:20.497 回答
1

在表单上放置两个按钮:

<asp:Button ID="ButtonToDisable" runat="server" Text="Button" />
<asp:LinkButton ID="PostBackLinkButton" runat="server" onclick="PostBackLinkButton_Click"></asp:LinkButton>

第一个是 2 秒后禁用的按钮,第二个是执行回发的按钮。

接下来将此代码放入 page.cs 中:

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            ClientScript.RegisterStartupScript(this.GetType(), "timer",
               "setTimeout(function(){" + Page.ClientScript.GetPostBackEventReference(PostBackLinkButton, String.Empty) + "},2000)", true);
        }
    }

    protected void PostBackLinkButton_Click(object sender, EventArgs e)
    {
        ButtonToDisable.Enabled = false;
        ButtonToDisable.Text = "Button is disabled!";
    }

现在只需运行页面并等待 2 秒,就会发生回发并禁用 PostBackLinkBut​​ton。

如果您不希望用户可以看到回发,请在更新面板内放置按钮。

于 2012-12-13T11:32:03.423 回答
1

如果我正确理解你需要这样的东西:

 var isClicked=false;
 $('.myButton').click(function (e) {
    e=e?e:window.event;
    if(!isClicked){
        if($.browser.msie){e.cancelBubble=true; e.returnValue=false;}
      else
        e.preventDefault();
    isClicked=true;   
    $(this).attr('disabled','disabled');
    setTimeout(function(){delayClick();},1000);
  }

});
function delayClick()
{
   $(this).removeAttr('disabled');
   $('.myButton').click();

}
于 2012-12-13T11:36:46.233 回答