function delMsg() {
var id = '';
$("input[name=id]:checked").each(function() {
id +=','+$(this).val();
});
if(id.length > 0) {
id = id.substring(1);
}
$.post('index.php?c=msg&a=delMsg',{"val":id},function(D,S){
alert('删除成功');
window.location.href='index.php?c=msg&a=myMsgBox';
})
}
选择删除 js
最新推荐文章于 2021-06-28 14:52:52 发布