我正在尝试使用 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"));
});
});
谁能解释一下为什么上面的代码不起作用?