2017-02-27 11 views
0
$.each(category, function (index, value) { 
var addnew = '<div class="about">'; 
    addnew += '<div class="profile-title">'; 
    addnew += '<span>'; 
    addnew += '</span>'; 
    addnew += '</div>'; 
    addnew += '</div>'; 
}); 

私はちょうど値を取得し、SPANタグに入れたい それを行うには?Jquery。各値を取得

+0

あなたはチルト記号の内側にあなたのjQueryを置く理由は? –

+0

申し訳ありませんタイプミス –

+0

あなたの問題@DaveManuel? –

答えて

2

あなたはcategory変数にカテゴリ配列を持っている場合は、以下のように自分のコードを使用する必要があります::

$.each(category, function (index, value) { 
    var addnew = '<div class="about">'; 
    addnew += '<div class="profile-title">'; 
    addnew += '<span>' + value + '</span>'; 
    addnew += '</div>'; 
    addnew += '</div>'; 
}); 
+0

アレイが動作しているかどうかを確認します。 –

+0

@DaveManuelはい、ご確認ください。 –

+0

私は今私のprobkwn un配列を持っている –