我有一個單選按鈕組,我想選擇所選按鈕之一。從選定的單選按鈕中選擇下一個單選按鈕
$(document).ready(function() {
$('.next').click(function() {
$("input[name=choice]:checked").next().click();
});
});
.button {
display: inline-block;
padding: 1em;
margin: 20px;
border: 1px solid black;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="radio" id="choise_1" name="choice" checked="checked" />
<label for="choise_1">One</label>
<input type="radio" id="choise_2" name="choice" />
<label for="choise_2">Two</label>
<input type="radio" id="choise_3" name="choice" />
<label for="choise_3">Three</label>
<div class="button next">SELECT NEXT</div>
這是我有,但它是不工作
難道你不覺得'.prop('checked',true)'比'.click()'更好嗎? – Rayon
@RayonDabre是的,沒錯。應該是,而不是點擊。 – Jai
太好了,謝謝你的解釋! – chiapa