问题描述
- 谁有jsTree简单树形图代码
-
求个js高手, 要代码, 在线等,急 !!!!
解决方案
看看例子
http://www.cnblogs.com/lei2007/archive/2011/08/06/2129628.html
解决方案二:
function addtab(id, atext, aurl) {
if (!mytab) return;
mytab.addTabItem({tabid: id, text: atext, url: aurl})
}
$(function () {
$("#main").ligerLayout({topHeight: 80, leftWidth: 400});
$("#wltree").ligerTree();
//加载目录树
$.ajax({
type : "get",
url : '1.0/Tracker/devices',
success : function(data) {
//alert(data);
Tdata = eval("("+data+")");
console.log(Tdata);
}
});
setTimeout(function(){
tree();
},1000);
时间: 2024-12-08 02:30:13