$.each(category, function (index, value) {
var addnew = '<div class="about">';
addnew += '<div class="profile-title">';
addnew += '<span>';
addnew += '</span>';
addnew += '</div>';
addnew += '</div>';
});
我只想获得价值并将其放入SPAN TAG 怎么做?
答案 0 :(得分: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>';
});