Heim  >  Artikel  >  Web-Frontend  >  任意Json转无序列表_html/css_WEB-ITnose

任意Json转无序列表_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:14:581145Durchsuche

网上很多树状插件都是需要固定格式的Json,但自己在生成Json的时候没考虑这些,所以就只能自己拼接字符串来生成无序列表.

比如:

{ "顶层菜单1":[ { "domain":"顶层菜单1", "runType":"background", "moduleName":"子菜单", "memo":"描述", "srcFile":"", "depends":[] } ], "顶层菜单2":[ { "domain":"顶层菜单2", "runType":"background", "moduleName":"子菜单1", "memo":"描述", "srcFile":"", "depends":[] }, { "domain":"顶层菜单2", "runType":"background", "moduleName":"子菜单2", "memo":"描述", "srcFile":"", "depends":[] } ], "顶层菜单3":[]}

直接贴代码吧…

dataObject = JSON.parse(data);var html = '<ul>';var domainName;var moduleName;for ( var n in dataObject) {    html += '<li>' + n + '<ul class="listItem">';    for (var i = 0; i < dataObject[n].length; i++) {        domainName=dataObject[n][i].domain;        moduleName=dataObject[n][i].moduleName;        html += '<a href="#">' + '<li>'+ moduleName + '</li>'+ '</a>';    }    html += '</ul></li>';}html += '</ul>';$('#sidebar').append(html);

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn