表:
查询
//删除
function del() {
var$tr=$('#td').parent();
var uesrid=$tr.children(':first').html();
$.ajax({
url: "del",
type: "post",
dataType: "json",
data: {
"userid": userid
},
success: function (data) {
}
})
}
);