function RemoveLog(){
var postModel=[];
//Travel the check box to get the data ID to be deleted and store it in the array
$("[name='lid']").each(function () {
if ($(this).attr("checked") == "checked")
({ name: 'ids', value:$(this).val()});
});
if( == 0) {
alert('Please select the content you want to delete first!');
return;
}
//Post delete method, pass array
$.post('/admin/Delete',postModel,function(data){
});
}