标签:turn += col text checked javascrip nbsp 函数 put
一、多选按钮总结
<input type="checkbox" class="checkStyle" onclick="checkSelected()" value="test" id="test">测试<br/>
(1)获取选中的多选按钮的值:
function checkSelected() { var checkText = ""; $(‘input:checkbox:checked‘).each(function() { var name = $(this).val(); checkText += name + ","; }); console.log(checkText,"ddddd"); }
(2)使用函数设置多选按钮为选中或不选状态
$("#test").removeAttr("checked");
(3)让多选框变大一些
zoom: 130%;
(4)默认是选中状态,不可改变
<input type="checkbox" class="checkStyle" onclick="javascript:return false;" checked="checked">测试<br/>
标签:turn += col text checked javascrip nbsp 函数 put
原文地址:https://www.cnblogs.com/cxli99/p/12909523.html