读书人

easyui tree除开传json的url能否直接传

发布时间: 2013-09-05 16:02:06 作者: rapoo

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#

读书人网 >Java Web开发

热点推荐