2

我有以下代码:

<asp:Content ID="HeadContent" runat="server" ContentPlaceHolderID="HeadContent">
    <script type="text/javascript">
        function SetText(id) {
            if (Button2.value == "Disable automatic page refresh")
                Button2.value = "Automatic Refresh Disabled";
            return false;
        }
    </script>
</asp:Content>

<asp:Button ID="Button2" runat="server" Text="Disable automatic page refresh" OnClick="Button2_Click" OnClientClick="return SetText(this)" />

当我单击按钮时,按钮名称不会改变,但 C# 背后的代码仍然可以正常工作。谁能指出我正确的方向?我以为它可能是 OnClick 事件,但是删除它后,它仍然不起作用。我还尝试将 OnClick 更改为 OnServerClick 以防万一,但无济于事。

4

2 回答 2

7

您使用的是按钮的名称,而不是对发送到该方法的按钮的引用。使用参考:

function SetText(id) {
  if (id.value == "Disable automatic page refresh") {
    id.value = "Automatic Refresh Disabled";
  }
  return false;
}
于 2012-12-16T23:39:17.823 回答
0
   function SetText(id) {
        if (id.value == "text one") {
            id.value = "text two";
        }
        else
            id.value = "text one"; //return to the previous value.
        return false;
    }
于 2013-12-27T17:39:13.670 回答