今日、いくつかの文字列を含む配列があり、すべてが で終わります。例: ジャズ、ラテン、トランス、
配列の最後の要素から , を削除する必要があります。Stackoverflowを検索すると、いくつかの答えが見つかり、以下のコードを試しましたが、これまでのところ運がありません:(
// How I'm generating my Array (from checked checkboxes in a Modal)
role_Actor = [];
$('.simplemodal-data input:checked').each(function() {
role_Actor.push($(this).val());
});
// roleArray = my Array
var lastEl = roleArray.pop();
lastEl.substring(0, lastEl.length - 1);
roleArray.push($.trim(lastEl));
// My function that displays my strings on the page
$.each(roleArray, function(index, item) {
$('.'+rowName+' p').append(item+', ');
});
// Example of the Array:
Adult Animated, Behind the Scenes, Documentary,
ご覧いただきありがとうございます。
ありがとう@クレア・アンソニー!修正のために!!!