Football Shirt
jQuery(document).ready(function($) { function updateColorsForType(type) { $(".variation-swatch").removeClass("disabled"); $(".variation-swatch").each(function() { let color = $(this).data("value"); // Giả sử bạn có mảng cấu hình màu theo type let hoodieColors = ["Black", "White", "Ash", "Gold"]; let sweatshirtColors = ["Beige", "Daisy", "Forest", "Gravel"]; if (type === "Hoodie" && !hoodieColors.includes(color)) { $(this).addClass("disabled"); } if (type === "Sweatshirt" && !sweatshirtColors.includes(color)) { $(this).addClass("disabled"); } }); } // Bắt sự kiện click $("button[data-type='Hoodie']").on("click", function() { updateColorsForType("Hoodie"); }); $("button[data-type='Sweatshirt']").on("click", function() { updateColorsForType("Sweatshirt"); }); });
Skip to content