首頁  >  文章  >  web前端  >  如何使用JavaScript設定radio選取的範例

如何使用JavaScript設定radio選取的範例

黄舟
黄舟原創
2017-07-27 14:21:233050瀏覽

在頁面資料綁定時,常常會遇到給radio設定選中,以下是我寫的js方法,經過測試可以使用。歡迎拍磚


<html>
<head>
    <script type="text/javascript" src="./jquery.min.js"></script></head><body><p>
    <input id="rdo1" name="rdo1" type="radio" value="1" checked="checked"/>是 
    <input id="rdo1" name="rdo1" type="radio" value="0"/>否    
    <button id="btn1">是</button>
    <button id="btn2">否</button><p><script type="text/javascript">
    $(function(){
        $("#btn1").click(function(){
            $("input[name=&#39;rdo1&#39;]").eq(0).attr("checked","checked");
            $("input[name=&#39;rdo1&#39;]").eq(1).removeAttr("checked");
            $("input[name=&#39;rdo1&#39;]").eq(0).click();
        });
        $("#btn2").click(function(){
            $("input[name=&#39;rdo1&#39;]").eq(0).removeAttr("checked");
            $("input[name=&#39;rdo1&#39;]").eq(1).attr("checked","checked");
            $("input[name=&#39;rdo1&#39;]").eq(1).click();
        });
    });</script></body></html>

 

以上是如何使用JavaScript設定radio選取的範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn