$(function () {
  $('#tree_menu').tree({
    onSelect: function (node) {
      if (node.state == "closed"){
        $(this).tree('expand', node.target);
      }
      else{
        $(this).tree('collapse', node.target);
      }
    }
  });
});

  

相关文章: