0

我想将字体真棒图标备忘单转换成一种键值格式(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”

4

1 回答 1

2
var text = $('.span4').clone()    //clone the element
    .children() //select all the children
    .remove()   //remove all the children
    .end()  //again go back to selected element
    .text();    //get the text of element);

来源:http: //viralpatel.net/blogs/jquery-get-text-element-without-child-element/

于 2013-10-01T23:29:55.970 回答