问题陈述很简单。我需要查看用户是否从无线电组中选择了单选按钮。组中的每个单选按钮共享相同的id。
问题是我无法控制表单是如何生成的。以下是单选按钮控制代码的示例代码:
<input type="radio" name='s_2_1_6_0' value='Mail copy to my bill to address' id = "InvCopyRadio" onchange = 'SWESubmitForm(document.SWEForm2_0,s_4,"","1-DPWJJF")' style="height:20;width:25" tabindex=1997 >
除此之外,当选择单选按钮时,它不会向控件添加“选中”属性,只需文本检查(我猜只是检查没有值的属性)。以下是选定的单选控件的样子
<input type="radio" checked name='s_2_1_6_0' value='Mail copy to my bill to address' id = "InvCopyRadio" onchange = 'SWESubmitForm(document.SWEForm2_0,s_4,"","1-DPWJJF")' style="height:20;width:25" tabindex=1997 >
任何人都可以帮助我的jQuery代码,可以帮助我得到检查单选按钮的值?