我有一组复选框,只有在该组中选择了特定复选框时,我才想禁用这些复选框。我想我需要用不同的名称命名复选框并根据点击过滤其他复选框,但也希望stackoverflow的聪明人可能有一个更快的解决方案。
HTML
<td>Team 1 <br>Team 2</td><td>
<a class='iframe' href="bet-nfl?game_id=">+155 / 2.55 </a><input type="checkbox" id=0 class="parlay" value=><br>
<a class='iframe' href="bet-nfl?game_id=">-175 / 1.57 </a> <input type="checkbox" class="parlay" id=0 value=>
</td><td>
<a class='iframe' href="bet-nfl?game_id=">+3 100 / 2.00 </a><input type="checkbox" id=0 class="parlay" value=><br>
<a class='iframe' href="bet-nfl?game_id=">-3 -120 / 1.83</a><input type="checkbox" id=0 class="parlay" value=>
</td><td>
<a class='iframe' href="bet-nfl?game_id="> Over 50.5 -107 / 1.93</a><input type="checkbox" id=0 class="parlay" value=><br>
<a class='iframe' href="bet-nfl?game_id=">Under 50.5 -107 / 1.93 </a><input type="checkbox" id=0 class="parlay" value=>
</td></tr>
jQuery(到目前为止)
$(function(){
$('input:checkbox.parlay').change(function(){
var $this = $(this);
alert ($this.attr("id")); //return 0 if a checkbox is selected
//$(this).prop("checked", false); // <--I'm doing this wrong
});