jQuery-Radio取值/選取

指定某個 radio button 被選取 (使用 prop )

<input type="radio" name="no" value="1">1<br>
<input type="radio" name="no" value="2">2<br>
<input type="radio" name="no" value="3">3<br>

<button type="button" id="btn">選取2</button>

$("#btn").on("click", function() {
    //方法1:指定value
    $("input[name='no'][value='2']").prop("checked", true);

    //方法2:指定位置
    $("input[name='no']").eq(1).prop("checked", true);

});

取得 Radio 單選框選中的值

<input type="radio" name='myradio' value="1">
<input type="radio" name='myradio' value="2">
<input type="radio" name='myradio' value="3">
<button>Click</button>

$("button").on("click", function(){
  console.log($("input[type='radio']:checked").val());
})

留言