我正在实现 jquery 数据表。每行有 2 个单选按钮。我的问题是,如果单击它,两个单选按钮都会连续被选中,而在一列中只有一个单选按钮被选中。我需要完全相反的条件。这是我的代码。
initialiseDataTable : function(){
oTable = $('#example').dataTable({ bJQueryUI: true,
"bPaginate": false,
"bInfo": false,
"bRetrieve":true,
"sPaginationType": "full_numbers"})
.makeEditable({
sUpdateURL: function(value, settings)
{
return(value);
},
"aoColumns": [
{
type: 'checkbox',
onblur: function(value) {
return (value); }
},
{
onblur: function(value) {
return (value); }
},
{
onblur: function(value) {
return (value); }
},
{
type: 'radio',
onblur: function(value) {
return ("true"); }
},
{
type: 'radio',
onblur: function(value) {
return ("true"); }
}
]
});
},
在 HTML 文件中,
<%for(var i=0;i<exceptionMappingData.length;i++){%>
<%if(exceptionMappingData[i].attributes != undefined && exceptionMappingData[i].attributes !=null && exceptionMappingData[i].attributes !='') {%>
<tr>
<td><input name="" type="checkbox" id='' class=""/></td>
<td class="read_only"><%=exceptionMappingData[i].attributes.organizationVO.name%></td>
<td><%=exceptionMappingData[i].attributes.mappedBR%></td>
<td><input type="radio" id='' class="" name="docTypeGroup"/></td>
<td><input type="radio" id='' class="" name="docTypeGroup"/></td>
</tr>
<%}}%>
如何只允许选择一个单选按钮?另外如何获取选定的单选按钮值?