日期:2014-05-16 浏览次数:20424 次
$(function() {
$("#demo0").bind('loaded.jstree', function(e, data) {
// invoked after jstree has loaded
$('#demo1>ul>li').addClass('topMenu');
}).jstree({
"themes": { "theme": "classic" },
"json_data": {
"ajax": {
"type": "POST",
"dataType": "json",
"contentType": "application/json;",
"url": "/Desktop/MenusFunc.aspx/GetAllNode",
"data": function(node) {
if (node == -1) {
return '{ "operation" : "get_children", "parentId" : ' + 1 + '}';
} else {
return '{ "operation" : "get_children", "parentId" : ' + $(node).attr("id") + '}';
}
},
"success": function(retval) {
return retval.d;
}
}