我尝试使用完整的(v 4.2)FontAwesome图标列表填充Select Dropdown。我能找到的最接近的列表是here,但它已经过时了。有没有人有他们可以推荐我的名单?
答案 0 :(得分:2)
此网址:http://fortawesome.github.io/Font-Awesome/icons/包含所有图标的列表。虽然它不是您所描述的格式,但我们可以使用一些jquery将其转换为您想要的格式:
$.map($("h2").map(function(){
var a = $(this).nextAll(".row:first").find("a").map(function(){
return $(this).attr('href').split("/").slice(-1)[0];
});
return {title: $(this).html(), options: a}
}), function(object){ return "<optgroup label='"+object.title+"'>"+$.map($.unique(object.options), function(option){ return "<option>"+option+"</option>"; }).join("")+"</optgroup>"; }).join("");
生成此列表:http://pastebin.com/NQ1S7RJF
(请注意,它是一个独特图标列表 - 它不会包含,例如:file-sound-o
,因为它是file-audio-o
的别名)