以批次刪除資料為例做批次刪除會需要傳遞要刪除的資料ID陣列
function RemoveLog(){
var postModel=[];
//遍歷複選框取得要刪除的資料ID 存放到陣列中
$("[name='lid ']").each(function () {
if ($(this).attr("checked") == "checked")
postModel.push({ name: 'ids', value:$ (this).val()});
});
if(postModel.length == 0) {
alert('請先選擇要刪除的內容!');
return ;
}
//post刪除方法,傳遞陣列
$.post('/admin/Delete',postModel,function(data){
});
}
//CList#類別接收資料即可
public JsonResult Delete(List ids)
{
}