function deletes(){
if(selectedTR == null){
alert("please select row");
return;
}
$.ajax({
type : "POST", // http请求方式
url : "/livegameadmin/app/videoInfo/DeleteVideoInfo",
data : "id=" + videoId, // 发送给服务器段的数据,这里必须要填的,否则“/check.do?method=loginCheck”得不到数据
dataType : "xml", // 告诉JQuery返回的数据格式
beforeSend : function() {
// alert("before");
},
success : function(data) {
var jqueryObj = $(data);
jump(jqueryObj);
$('#' + videoId).remove();
selectedTR = null;
//alert("删除成功!!");
tableWidthEquals("titleTable","videoInfoTable");
changeColorTR("videoInfoTable");
}, // 定义交互完成,并且服务器正确返回数据时调用的回调函数
error : function(e) {
alert("fail!");
}
});
}