栏目链接数据.js 275 Bytes
var TAXONNOMY_LINK_LIST = {};
jQuery('#taxonomy .menu-item__link').each(function (index) {
  TAXONNOMY_LINK_LIST[index] = {
    'taxonomy':jQuery(this).text(),
    'url':/[0-9]*$/.exec(jQuery(this).attr('href'))[0]
  };
});

console.log(JSON.stringify(TAXONNOMY_LINK_LIST));