Js设置checkbox单选 获取checkBox的选中值 遍历角色

设置单选

/*设置checkbox单选*/
$(":checkbox").click(function(){
    $(this).attr("checked",true);
    $(this).siblings().attr("checked",false); //设置当前选中的checkbox同级(兄弟级)其他checkbox状态为未选中});});
});

获取选中的值

$("input[name='projectAttributes']:checked").val()

遍历角色

<div class="col-xs-10">
    <label th:each="role:${roles}" class="check-box">
   	<input name="role" type="checkbox" th:value="${role.roleId}" th:text="${role.roleName}" th:checked="${role.flag}" th:disabled="${role.status == '1'}">
    </label>
    <span id="techspan"></span>
</div>

select遍历字典

<select th:with="type=${@dict.getType('funding_type')}" >
   <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}"></option>
</select>

你可能感兴趣的:(java)