原始ajax提交:
$.ajax({
type: "POST",
data:"processId="+$("#processId").val()+"&delstepids="+delstepids,
url: "./delStepForProcess.jspx",
dataType: "text",
cache: false,
success: function(data){
if(1==data){
alert("删除失败!");
return;
}else{
location.reload();
}
}
});$.ajax({
type: "POST",