-2

繰り返しセクションがある CMS でこのコードを使用しています。このセクションでは、繰り返す値を追加できます。しかし、最後に繰り返された項目からコンマを削除したいと思います。最後の繰り返し項目からコンマを削除する方法を誰かが提案できますか? よろしくお願いします!

<script type="text/javascript">
  $("#gallery").click(function(e){
    e.preventDefault();
    $.swipebox([
// begin repeating area/section - in this example 4 items are repeated
          {href:'[%MEDIA_URL%]', title:'[%TITLE%]'}, 
          {href:'[%MEDIA_URL%]', title:'[%TITLE%]'},
          {href:'[%MEDIA_URL%]', title:'[%TITLE%]'},
          {href:'[%MEDIA_URL%]', title:'[%TITLE%]'}, //this comma needs to be removed
// end repeating area/section
           ]);

//some code here to remove the last comma from the array ???

     });
 </script>
4

1 に答える 1