单击td,在jQuery中选择单选按钮

前端之家收集整理的这篇文章主要介绍了单击td,在jQuery中选择单选按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一些非常基本的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);

 });

任何帮助真的很感激,谢谢!

解决方法

使用此选择器:
$('input:radio',this).attr('checked',true);

或者使用find方法

$(this).find('input:radio').attr('checked',true);

以下是代码的外观:

$("td").click(function () {
   $(this).find('input:radio').attr('checked',true);
});
原文链接:https://www.f2er.com/jquery/177724.html

猜你在找的jQuery相关文章