超WORLDサッカー!

4/9(木) サーバメンテナンスのお知らせ
試合日程
    '; html += ''; html += ''; $("#stripe-schedule-list").append(html); } } }); }); // 初期選択 $(".tournament-selector").trigger("change");
    SNS
    '+title+'
    '); }); $(".stripe-pickup-large").each(function(index, obj){ var title = $(obj).data("title"); var image = $(obj).data("image"); var news_no = $(obj).data("news-no"); $(obj).append('
    '+title+'
    '); }); $(".stripe-pickup-middle > div").each(function(index, obj){ var title = $(obj).data("title"); var image = $(obj).data("image"); var news_no = $(obj).data("news-no"); $(obj).append('
    '+title+'
    '); }); $(".stripe-news-middle").each(function(index, obj){ var category = $(obj).data("category"); var start_index = $(obj).data("start-index"); var news_count = $(obj).data("count"); var hide_news_no = $(obj).data("hide-news-no"); var hide_news_no_list = []; if(hide_news_no) { hide_news_no_list = String(hide_news_no).split(","); } var hide_id = $(obj).data("hide-id"); var hide_id_list = []; if(hide_id) { hide_id_list = String(hide_id).split(","); } var stripe_news_list = []; // 使わないIDを、使わない記事に変換。 $.each(hide_id_list, function(index, value) { var news_no = $("#" + value).data("news-no"); if(news_no) { hide_news_no_list.push(String(news_no)); } }); // 使わない記事を省いて、リスト再生成。 $.each(stripe_news_list_hash[category], function(index, value) { var news_no = value.news_no; if (hide_news_no_list.indexOf(news_no) >= 0){ return true; } stripe_news_list.push(value); }); var count = 0; $.each(stripe_news_list, function(index, value) { // 表示する件数。 if(news_count <= count) { return false; } // 開始位置を調整。 if(index < start_index) { return true; } var title = value.title; var image = "/pc/img/cws_logo_news.jpg"; if(value.thumbnail_id) { image = "/image/thumbnail?image_id=" + value.thumbnail_id; } var news_no = value.news_no; var date = value.date; $(obj).append('
    '+title+'
    '+date+'
    '); count++; }); }); $(".stripe-news-small").each(function(index, obj){ var category = $(obj).data("category"); var start_index = $(obj).data("start-index"); var news_count = $(obj).data("count"); var hide_news_no = $(obj).data("hide-news-no"); var hide_news_no_list = []; if(hide_news_no) { hide_news_no_list = String(hide_news_no).split(","); } var hide_id = $(obj).data("hide-id"); var hide_id_list = []; if(hide_id) { hide_id_list = String(hide_id).split(","); } var stripe_news_list = []; // 使わないIDを、使わない記事に変換。 $.each(hide_id_list, function(index, value) { var news_no = $("#" + value).data("news-no"); if(news_no) { hide_news_no_list.push(String(news_no)); } }); // 使わない記事を省いて、リスト再生成。 $.each(stripe_news_list_hash[category], function(index, value) { var news_no = value.news_no; if (hide_news_no_list.indexOf(news_no) >= 0){ return true; } stripe_news_list.push(value); }); var count = 0; $.each(stripe_news_list, function(index, value) { // 表示する件数。 if(news_count <= count) { return false; } // 開始位置を調整。 if(index < start_index) { return true; } var title = value.title; var news_no = value.news_no; $(obj).append('
    '+title+'
    '); count++; }); }); $(".stripe-group-rank").each(function(index, obj){ var category = "rank"; var start_index = 0; var count = 0; $.each(stripe_news_list_hash[category], function(index, value) { // 表示する件数。 if(5 <= count) { return false; } var title = value.title; var image = "/pc/img/cws_logo_news.jpg"; if(value.image_id) { image = "/image/thumbnail?image_id=" + value.image_id; } else if(value.image_url) { image = value.image_url; } var news_no = value.news_no; var order = count + 1; $(obj).append('
    '+order+'
    '+title+'
    '); count++; }); });