我想将字体真棒图标备忘单转换成一种键值格式(csv很好)以移植到另一个平台
工作表在这里
http://fortawesome.github.io/Font-Awesome/cheatsheet/
我可以获取包含每个图标和代码的所有元素,但我不知道如何获取文本
var elements = $('div.container .row .span4');
$.each(elements, function(el) {
var iconCode = $('span.muted',$(this)).text(); //icon code
//need icon name
console.log(iconCode);
});
icon-star-half
()
所以我想以某种方式拉出文本“icon-star-half”