function show(){
var strIds=new Array();
$("input[name='btSelectItem']").each(function (i,d){
if(d.checked) {
strIds.push(d.id);
}
})
return strIds;
}
返回多选的数组的id
最新推荐文章于 2023-06-15 20:12:45 发布