站内搜索:
首页 >> 前端 >> 内容
全选

时间:2017/2/7 11:12:21

//选中所有
	function selectAllOrderFunc() {
		var selectedAll = $("#all").attr("checked");
		if(selectedAll == "checked") {
			$("#inspectMaterialTrailerBodyLeft tr td input[type='checkbox']").each(function() {
				$(this).attr("checked",true);
			});
		} else {
			$("#inspectMaterialTrailerBodyLeft tr td input[type='checkbox']").each(function() {
					$(this).removeProp("checked");
			});
		}
	}

	<!-- 公司的写法,全选, -->
						<th style="width:80px;" rowspan = "2" class="checkBox">
							<input type="checkBox" name='selectColumnAll' >
						</th>
//全选
$("#selectAll").click(function(){
$("[name=items]:checkbox").each(function(){
$(this).attr("checked",true);
});
});

 

//全不选
$("#unSelect").click(function(){
$("[name=items]:checkbox").each(function(){
$(this).attr("checked",false);
});
});


  • 上一篇:微信小程序实用小技巧
  • 下一篇:数据库中表与表之间建立关系(一对多、多对多)
  • 返回顶部