java ajax 刪除,複製貼上直接使用
阿新 • • 發佈:2018-12-31
//id:根據id去資料刪除 //count: 傳節點(div的id),後臺刪除後,頁面直接移除節點元素,實現區域性重新整理效果 function deleContents(id,count){ var msg = "您真的確定要刪除嗎?\n\n請確認!"; if (confirm(msg)==true){ $.ajax({ type: "GET", url: basePath+"/index/ContentsDele?", //專案刪除介面方法地址 data: {id:id}, success: function(data){ if(data!=null){ alert("刪除成功"); $('#group'+count).remove(); } }, error: function(data){ alert("刪除失敗"); }, }); }else{ return false; } }
@RequestMapping(value="ContentsDele")
@ResponseBody
public int ContentsDele(ModelAndView mav,Integer id) {
return contentsService.deleContents(id);
}