Jquery 相关笔记

//得到所有check
  var c = $(this).parent().find('input:checkbox');
if (c.is(':checked')) {
var role = {};
role.RoleGroupID = groupId.toString();
role.MenuCode = $(this).data('menucode');
role.OperationCode = $(this).data('perationcode');
json.push(role);
i++;
}
 //直接得到选中的check
if ($(this).parent().find('input:checkbox:checked'))
 全选checkbox
<ul id = "list-unstyled" class="list-unstyled">
<li><input type="checkbox" value="9-DM"></li>
<li><input type="checkbox" value="10-DM"></li>
<li><input type="checkbox" value="11-DM"></li>
<li><input type="checkbox" value="12-DM"></li>
</ul> $('input[type="checkbox"]').prop('checked', 'true')
 //反选checkbox
$('input[name="check"]').each(function () { //   $('input[type="checkbox"]').each(function () {
$(this).prop("checked", !$(this).prop("checked"));
});
上一篇:01-Java基础知识:数据类型与变量、标识符、运算符、表达式


下一篇:C#将集合快速排序