如何清除这些复选框:
<form class="betMatch" id="4">
<table class="grid-info">
<tr>
<td><input type="radio" class="betMatchWin" id="49" value="1" name="betmatch1" /></td>
<td><input type="radio" class="betMatchCover" id="49" value="2" name="betmatch1" /></td>
</tr>
</table>
</form>
我的查询:
var x=1;
$('form.matchBet#4 input:radio[name=betmatch'+x+']').attr('checked',false);
我不明白为什么它不起作用,但按钮不会清除....