js 多选 反选】的更多相关文章

操作checkbox,全选反选 //全选 function checkAll() { $('input[name="TheID"]').attr("checked", "checked"); } //反选 function uncheckAll() { $('input[name="TheID"]').each(function() { this.checked = !this.checked; }) } //获取选中的项 f…
总选框:<input type="checkbox" class="all" name="all"> 子选框: <input class='sel' type='checkbox' name='test' value=""> /** * 全选 反选 */ $(".all").bind("click",function(){ $(".sel").…
// 全选 反选 allChoose: function (o) { var obj = $.extend(true, { id: "#id", name: "name", allSelection: true, invertSelection: true }, o); var $id; if (obj.id.substring(1) === "#") { $id = obj.id; } else { $id = "#" +…
1.全选 function selectAll(form){ for (var i = 0; i < form.elements.length; i++) { if (form.elements[i].type=="checkbox") { try{ $(form.elements[i]).check("option", "checked", true); }catch(e){ console.log(e); } } } } 2.反选 fu…
prop 对于HTML元素本身就带有的固有属性,在处理时,使用prop方法. attr  对于HTML元素我们自己自定义的DOM属性,在处理时,使用attr方法. $("#selectAll").click(function () { //全选     if ($(this).is(':checked')) {         $(".reseller_checkbox:checkbox").prop("checked", true);     …
<style type="text/css"> table { width: 800px; text-align: left; border-collapse: collapse; } td, th { padding: 10px; border: 1px solid black; } </style> <script type="text/javascript"> // 反选 function choose(tag) { var…
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <ti…
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title> </title></head><body><form action=""> <p><input type="checkbox" >我是谁</p> &…
<th><input type="checkbox" id="checkall" name="checkall" onclick="checkAll(checkall)" /></th> <td align ="center"><input type="checkbox" id="checkall" name='i…
//$(".435__1").attr("checked", true); //$(".435__0").removeAttr("checked"); $("."+pid+"__1").attr("checked", true); $("."+pid+"__0:checked").removeAttr("checked…