日期:2014-05-16 浏览次数:20553 次
<table> <tr> <td><input type="radion" class="check"></td> <td>1111111</td> <td>111111111</td> <td>1111111111</td> <td>11111111111</td> </tr> </table>
Quote: 引用: $("tr").click(function(){ $(this).find("input[type='radio']").attr("checked",true); }) 直接判断当点击tr里面所有的td都会选中单选按钮 感觉“迟钝”额...有时有用,有时点击没用。。。。
$("tr").click(function(){ $(this).find("input[type='radio']").attr("checked",true); }) 直接判断当点击tr里面所有的td都会选中单选按钮
$("tr").click(function(){ $(this).find("input[type='radio']").attr("checked",true); })