js設定radio選択

7054 ワード

ページのデータをバインディングする時、よくラジオに選択を設定します.以下は私が書いたjsの方法です.テストしたら使えます.いらっしゃいませ
<html>
<head>
    <script type="text/javascript" src="./jquery.min.js">script>
head>
<body>
<div>
    <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>
<div>
<script type="text/javascript">
    $(function(){
        $("#btn1").click(function(){
            $("input[name='rdo1']").eq(0).attr("checked","checked");
            $("input[name='rdo1']").eq(1).removeAttr("checked");
            $("input[name='rdo1']").eq(0).click();
        });
        $("#btn2").click(function(){
            $("input[name='rdo1']").eq(0).removeAttr("checked");
            $("input[name='rdo1']").eq(1).attr("checked","checked");
            $("input[name='rdo1']").eq(1).click();
        });
    });
script>
body>
html>
 
転載先:https://www.cnblogs.com/liuxing3169/p/3981064.html