标签:
checkedData.push(record); 直接在record 这个数组后面添加;
var index =jQuery.inArray(record,checkedData);// 获取index 的位置
checkedData.splice(index,1); // 从index位置删除1个
$("#specificationid input[type=‘checkbox‘]").filter(":checked").size();// 过滤 input[type=‘checkbox‘]的 是选中的长度
标签:
原文地址:http://www.cnblogs.com/liduanwen/p/4760795.html