push splice filter用法

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']的 是选中的长度 

 

你可能感兴趣的:(push splice filter用法)