一、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) }) }) });