当前位置: 代码迷 >> Java Web开发 >> easyui tree除开传json的url能否直接传json数据进去
  详细解决方案

easyui tree除开传json的url能否直接传json数据进去

热度:163   发布时间:2016-04-12 22:11:07.0
easyui tree除了传json的url能否直接传json数据进去
除了传json的url
能否直接传json数据进去

$('#tt').tree({   
    url:'tree_data.json'  
});  
easyui json

------解决方案--------------------
Properties: data : The node data to be loaded. 
$('#tt').tree({
data: [{
text: 'Item1',
state: 'closed',
children: [{
text: 'Item11'
},{
text: 'Item12'
}]
},{
text: 'Item2'
}]
});





不看API的吗?  地址: http://www.jeasyui.com/documentation/index.php#
  相关解决方案