10

我正在尝试使用 jQuery 切换几个单选按钮。但事实证明并非如此简单。

<button id="toggler">click me</button><br>
<input type="radio" name="speeds" value="fast" checked>fast<br>
<input type="radio" name="speeds" value="slow">slow<br>

$('#toggler').click(function() {
    $('input[name="speeds"]').each(function(){
        $(this).prop("checked", !$(this).prop("checked"));
    });
});

http://jsfiddle.net/beC7q/

谁能解释一下为什么上面的代码不起作用?

4

2 回答 2

34

如果只有两个单选按钮

$('#toggler').click(function() {
    $('input[type="radio"]').not(':checked').prop("checked", true);
});

演示:小提琴

如果有超过 2 个元素

var $radios = $('input[type="radio"][name="speeds"]')
$('#toggler').click(function() {
    var $checked = $radios.filter(':checked');
    var $next = $radios.eq($radios.index($checked) + 1);
    if(!$next.length){
        $next = $radios.first();
    }
    $next.prop("checked", true);
});

演示:小提琴

于 2013-10-02T16:28:28.597 回答
9

组中的单选按钮(即input具有相同name值的 s)已经是互斥的。你只需要修改一个的“checked”状态就可以改变整个组的状态:

例如,此代码将始终将组中的最后一个收音机设置为“已选中”:

$('#toggler').click(function() {
    $('input[type="radio"][name="speeds"]').last().prop('checked', true);
});

DEMO

于 2013-10-02T16:32:32.403 回答