Created
June 16, 2015 04:37
-
-
Save coolicer/073bd830ea45895ee467 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var datasource = [{ | |
"text": "null",//根节点 | |
"expanded": true, | |
"items": [ | |
{ | |
"text":"user1",//第一个子菜单 | |
"expanded": true, | |
"items":[ | |
{ | |
"text":"user2",//二级菜单 | |
"expanded": true, | |
"items":[ | |
{ | |
"text":"user4",//三级 | |
"items":[ | |
{ | |
"text":"user5"//四级 | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"text":"user3", | |
} | |
] | |
}, | |
] | |
}]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment