這是我的單選按鈕,我想從通過警報列表中的值當我點擊提交按鈕,但價值不來單選按鈕,檢查
<asp:RadioButtonList ID="Titlerbl" runat="server" CssClass="tit" RepeatDirection="Horizontal" ValidationGroup="grt"> <asp:ListItem>MR</asp:ListItem><asp:ListItem>MS</asp:ListItem> <asp:ListItem>DR</asp:ListItem> </asp:RadioButtonList>
這是Java腳本
var radio = document.getElementById("Titlerbl").value;
for (var j = 0; j < radio.length; j++)
{
if (radio[j].checked)
alert(radio[j].value);
}
刪除。價值,並檢查它,我認爲它的工作 – Hkachhia
刪除'.value'從alert –
@vinoth kannan:更新了我的post.ps –