$(function () { $.ajax({ type: "get", url: "/postmeta/s/20152.json", dataType: "json", success: function (data) { var children = data.children; $.each(children, function (index, item) { var id = item.id, jump_url = item.jump_url, //栏目重定向链接 pub_point = item.pub_point, //栏目发布点 url = jump_url ? jump_url : "/" + pub_point; if (index < 23) { $('#data-zdlyNavs').append('
' + '
' + '' + '
' + '
'); } $.ajax({ type: "get", url: "/postmeta/s/" + id + ".json", dataType: "json", success: function (subData) { var subChild = subData.children, subHtml = '', subnav = ''; if (subChild.length > 0) { $.each(subChild, function (sIndex, sItem) { var s_jump_url = sItem.jump_url, //栏目重定向链接 s_pub_point = sItem.pub_point, //栏目发布点 s_url = s_jump_url ? s_jump_url : "/" + s_pub_point; subnav += '
  • ' + sItem.name + '
  • '; }) subHtml = '

    ' + item.name + '

    '; } $('#item-' + id).find('.box').append(subHtml); } }); }) } }); });