欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Jquery实现点击当前radio button设置选中属性,其它设置非选中属性

程序员文章站 2022-05-28 14:03:50
一、HTML代码: 二、jQuery代码: ......

一、html代码:

<div class="ques-tc-r" id="question_type">
                          <ul class="clearfix">
                            <li class="select-cur">
                              <input type="radio" value="1" name="question_type" checked="checked" />
                              <span>问题a</span>
                            </li>
                            <li>
                              <input type="radio" value="2" name="question_type" />
                              <span>问题b</span>
                            </li>
                            <li>
                              <input type="radio" value="3" name="question_type" />
                              <span>问题c</span>
                            </li>
                            <li>
                              <input type="radio" value="4" name="question_type" />
                              <span>问题d</span>
                            </li>
                          </ul>
                        </div>

二、jquery代码:

$('.ques-tc-r ul li').each(function (i, o) {
      $(o).click(function () {
        $(o).addclass('select-cur');
        $(o).siblings().removeclass('select-cur');
        $('.select-cur > input').attr('checked', true)
        $('.ques-tc-r ul li:not(.select-cur) > input').each(function (index, it) {
          $(it).attr("checked", false)
        })
      })
    });