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 に答える