$(function () {
$("#subt").val("保存");
var namearry = [];//定義空數組
$('.ListMid').on('click', function (index) { //事件綁定
if ($(this).is(":checked")) {/確認是否勾選
namearry.push($(this).attr("mid"));//勾選的都添加到數組里
$("#hd_selectValue").val(namearry);//值存放在隱藏域方便后台獲取
}
else {
function delItem(item, list) {//遍歷刪除指定取消的勾選框
list.splice(list.indexOf(item), 1)
}
delItem($(this).attr("mid"),namearry)//刪除指定的值
$("#hd_selectValue").val(namearry);//重新返回到隱藏域存儲
}
/*
if ($(this).is(":checked")) {
// alert("選中");
namearry.push($(this).attr("mid"));
$("#hd_selectValue").val(namearry);
} else if($(this).prop("checked",false)){
//alert("取消");
}*/
});
})