首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

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

2013-09-05 
easyui tree除了传json的url能否直接传json数据进去除了传json的url能否直接传json数据进去$(#tt).tree(

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#

热点排行