0

我有这些站点中的站点和站点列表。给定此输出,如何使用 ul 和 li 元素创建导航树?

https://hosted.demo.ca
https://hosted.demo.ca/academic
https://hosted.demo.ca/academic/bm
https://hosted.demo.ca/academic/cmtte
https://hosted.demo.ca/academic/dm
https://hosted.demo.ca/academic/pm
https://hosted.demo.ca/archive
https://hosted.demo.ca/associations
https://hosted.demo.ca/associations/bm
https://hosted.demo.ca/associations/dm
https://hosted.demo.ca/associations/pm
https://hosted.demo.ca/cdn
https://hosted.demo.ca/cf_test
https://hosted.demo.ca/charity
https://hosted.demo.ca/charity/bod
https://hosted.demo.ca/charity/bod/boarddocs
https://hosted.demo.ca/charity/bod/mtgmaterial
https://hosted.demo.ca/clite
https://hosted.demo.ca/clite/admin
https://hosted.demo.ca/company
https://hosted.demo.ca/company/finance
https://hosted.demo.ca/company/hr
https://hosted.demo.ca/company/hr/b1
https://hosted.demo.ca/company/hr/b1/b2
https://hosted.demo.ca/company/hr/b1/b2/b3
https://hosted.demo.ca/company/mrkting
https://hosted.demo.ca/demo

我想把这个列表变成这样的:

<UL>
  <li>Academic
    <ul>
      <li>BM</li>
      <li>CMTTE</LI>
      <li>DM</li>
      <li>PM</li>
  </ul>
  </li>
</ul>
<ul>
  <li>ARCHIVE</li>
</UL>
<ul>
  <LI>ASSOCIATIONS
    <ul>
    <li>BM</li>
    <li>DM</LI>
    <li>PM</li>
    </ul>
  </LI>
</ul>

有人建议我尝试这样的事情:

  var map = {}; //init the map
  var web = $(xData.responseXML).find("Web");
  for (var i = 0; i < web.length; i++) {
  //we create a index for our links based on the depth of them by `/`
    var m = web[i].attributes['Url'].value.substring(23, web[i].attributes['Url'].value.length).split('/').length; 

    map[m] = map[m] || []; //make sure we leave alone the old values if there is none init with new array
    map[m].push(web[i].attributes['Url'].value); //push new value to node
  }
  console.log(map);

但是它返回的对象将所有具有相同数量“/”的站点放入一个数组中。这不是我正在寻找的。

4

1 回答 1

1

看一下

var map = {}; //init the map
  var web = $(xData.responseXML).find("Web")
                .map(function () {
                    return $(this).attr('Url');
                });

  // create map for later use
  for (var i = 0; i < web.length; i++) {
      var item = web[i],
          parts = item.split('/'),
          domain = parts.splice(0, 3).join('/'),
          current;

      if (!map[domain]) map[domain] = {};
      current = map[domain];

     for (var index = 0, length = parts.length; index < length; index++) {
          var part = parts[index];
          if (!current[part]) {
              current[part] = {};
          }
          current = current[part];
      }
  }
  console.log(map);


  // create DOM method
  function traverseMap(obj, element) {
      for (var index in parts) {
          var li = $('<li>', {
              text: item
          }).appendTo(element);

          if (!$.isEmptyObject(obj[item])) {
              var ul = $('<ul>').appendTo(li);
              traverseMap(obj[item], ul);
          }
      }
  }

  // invoke the DOM creating function
  traverseMap(map, $('#root'));

演示在http://jsfiddle.net/4gJ9T/


并进行小的修改以保存/显示完整的网址(作为链接

演示在http://jsfiddle.net/4gJ9T/2/

于 2013-10-20T00:58:18.407 回答