代碼防止呼籲禁用RadioButtonList的JavaScript函數
<asp:RadioButtonList ID="rdStatus" onclick="javacript:display();" runat="server" RepeatDirection="Vertical">
<asp:ListItem Text="Temporary Waiver" Value="T" Selected="True"></asp:ListItem>
<asp:ListItem Text="Never Expires" Value="P"></asp:ListItem>
<asp:ListItem Text="Expires after the close of:" Value="W"></asp:ListItem>
</asp:RadioButtonList>
我的問題:
- 運行期間的單選按鈕列表,然後單擊事件創建此代碼的HTML表格放在桌子。
- 即使我禁用單選按鈕列表,單擊事件發生。我需要避免這個問題。請提出一些想法。