- 方式1:使用each
<div class="checkbox i-checks">
<c:forEach items="${typeList}" var="dogType">
<label> <input type="radio" value="${dogType.value}" <c:if test="${dogs.value == dogType.value}">checked="checked"</c:if> name="type" aria-checked="true" required> <i></i> ${dogType.text}</label>
</c:forEach>
</div>
$("input:radio[name='type']").each(function () {
if($(this).attr("checked") == 'checked'){
var type=$(this).val();
if (type == 1){
$("#oneDiv").hide();
$("#twoDiv").hide();
} else {
$("#oneDiv").show();
$("#twoDiv").show();
}
}
})