任何人都可以帮我解决这个问题吗?我担心的是为什么选择所有选项不能在这段代码中工作?
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
</script>
<input type="radio" name="A" class="first" />1</td>
<input type="radio" name="A" class="first" />2</td>
<input type="radio" name="A" class="first" />1</td>
<input type="radio" name="A" class="first" />2</td>
<input type="radio" name="all" class="allFirst" onclick="checkAll($(this));" />Select All #1
<script>
function checkAll(e) {
if (e.hasClass('allFirst'))
$('.first').prop('checked', true);
else
$('.second').prop('checked', true);
}
</script>
答案 0 :(得分:1)
单选按钮是互斥的。如果你不超过35岁或喜欢旧车,那么你可能还没有看到带预设按钮的收音机......
维基百科 -
单选按钮以旧版本上使用的物理按钮命名 无线电选择预设电台 - 当其中一个按钮是 按下,其他按钮会弹出,按下按钮 只有“推入”位置的按钮。