4
我想切換使用jQuery的幾個單選按鈕。但事實並非如此簡單。使用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"));
});
});
任何人都可以請解釋爲什麼上面的代碼不能正常工作?