var t = $('#combotree').combotree('tree'); // 得到树对象
var n = t.tree('getSelected'); // 得到选择的节点
t.tree('getChecked')
不能直接 combotree.combotree(‘getSelected’);
但是如果只需要取得 选择的值 就可以直接
combotree.combotree(‘getValues’);
getValues是 combo 的方法
getSelected 是 tree 的方法