jQuery:为选定的单选按钮获取父tr
我有以下HTML: <table id="MwDataList" class="data" width="100%" cellspacing="10px"> .... <td class="centerText" style="height: 56px;"> <input id="selectRadioButton" type="radio" name="selectRadioGroup"> </td> .... </table> 换句话说,我的表只有几行,最后一个单元格的每一行都有一个单选按钮。 如何获得所选单选按钮的父行? 我试过的 function getSelectedRowGuid() { var row = $("#MwDataList > input:radio[@name=selectRadioGroup]:checked :parent tr"); var guid = GetRowGuid(row); return guid; } 但似乎此选择器不正确。