ショッピングカート
閲覧履歴からのおすすめ作品
最近チェックした作品
最近売れた作品
'); var label = '「' + bulkbuy._info[k].label + '」'; if (bulkbuy._info[k].type === 'discount') { $message.text(label + "セット割キャンペーンの対象作品が含まれています。"); } else { // まとめ買い(type=fix) $message.text(label + "まとめ買いキャンペーンの対象作品が含まれています。"); } if (bulkbuy._info[k].link) { $message.append($('詳細を見る').attr('href', bulkbuy._info[k].link).prop('outerHTML')); } $bulkbuy_msg.append($message); }); $('#coupon_push').before($bulkbuy_msg); } else { $('#bulkbuy_message').remove(); } //まとめ買い割引・セット割が適用されています表示 $('.total_notice._type_fix').toggle(bulkbuy.is_bulkbuy_active_type_fix()); $('.total_notice._type_discount').toggle(bulkbuy.is_bulkbuy_active_type_discount()); }).triggerHandler('bulkbuy_price'); // ボイスコミックのチェック $('#show_cart').on('checkvoicecomic', function(e) { var force_disabled = $('[name="credit_x"]').prop('disabled'); var $have_not_purchased_parent_work = $('.__cart_list_item[data-voice-comic-not-have-parent="1"]').not('._removed'); var available_products = []; $('.__cart_list_item').not('._removed').each(function() { available_products.push($(this).attr('data-product-id')); }); var at_the_top_flag = false; $have_not_purchased_parent_work.each(function() { var parent_workno = $(this).attr('data-voice-comic-parent-id'); if (available_products.indexOf(parent_workno) === -1) { // カートに親作品がない $(this).find('.__voice_comic_non_purchasable').show(); at_the_top_flag = true; } else { // カートに親作品がある $(this).find('.__voice_comic_non_purchasable').hide(); } }); if (at_the_top_flag) { $('[name="credit_x"]').prop('disabled', true).addClass('disabled'); $('.__at_the_top_voice_comic_non_purchasable').show(); } else { if (!force_disabled) { $('[name="credit_x"]').prop('disabled', false).removeClass('disabled'); } $('.__at_the_top_voice_comic_non_purchasable').hide(); } }).triggerHandler('checkvoicecomic'); $('._btn_cart').on('click', function() { $(this).prop('disabled', true).addClass('disabled'); var product_id = $(this).data('parentWorkno'); var url = 'https://www.dlsite.com/home/cart/ajax/=/mode/cart/obj_nocheck/1/product_id/' + product_id; $.get(url).done(function(data) { window.location.href = 'https://www.dlsite.com/home/cart'; }); return false; }); //]]>