一些非常基本的jQuery遇到了一个小问题,我希望能够点击一个表格单元格,然后让它自动选择里面的单选按钮.
HTML:
<table> <tr> <td> 1<br> <input type="radio" name="choice" value="1"> </td> <td> 2<br> <input type="radio" name="choice" value="2"> </td> <td> 3<br> <input type="radio" name="choice" value="3"> </td> </tr> </table>
jQuery的:
$("td").click(function () { $(this).closest('input:radio').attr('checked',true); });
任何帮助真的很感激,谢谢!