- 注册时间
- 2013-5-3
- 最后登录
- 2025-7-4
- 阅读权限
- 150
- 积分
- 33072
- 精华
- 0
- 帖子
- 14397
 
|
本帖最后由 felt 于 2014-6-17 14:36 编辑
树形数据
[
{id: "base", text: "Base", expanded: false,
children: [
{id: "ajax", text: "Ajax"},
{id: "json", text: "JSON"},
{id: "date", text: "Date"},
{id: "control", text: "Control"},
{id: "messagebox", text: "MessageBox"},
{id: "window", text: "Window"}
]
},
...
]
或者列表数据
[
{id:"base",text:"Base"},
{id:"ajax",text:"Ajax",pid:"base"},
......
]
|
|