js 설정 라디오 선택

7096 단어
페이지 데이터 바 인 딩 시 라디오 설정 에 선택 되 는 경우 가 많 습 니 다. 다음은 제 가 쓴 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

좋은 웹페이지 즐겨찾기