日期:2014-05-16 浏览次数:20401 次
function customMenu(node) { var items = { "create": null, "rename": null, "remove": null, "ccp": null, "menu_delete": { "label": "删除", "icon": "../../img/delete.png", "action": function(obj) { //alert(obj.attr("rel")); var id = obj.attr("id"); if (id == "1") { alert("根节点不能删除") return false; } if (id && confirm("确定删除吗?")) { jQuery.ajax({ url: "AjaxService.ashx", cache: false, data: { CommandName: "DeleteClassByID", id: id }, success: function(data) { // alert("ok"); $("#class_tree").jstree("remove", null); } }); } } } } }