// Á¦Ç° Ä«µå HTML »ý¼º ÇÔ¼ö function createProductCard(product) { return `
${product.name}
${product.category}

${product.name}

${product.description}

${product.division}
`; } // Á¦Ç° »ó¼¼ ÆäÀÌÁö·Î À̵¿ÇÏ´Â ÇÔ¼ö function goToProductDetail(productId) { // URL ÆÄ¶ó¹ÌÅÍ·Î Á¦Ç° ID¸¦ Àü´Þ window.location.href = `productDetail.php?id=${productId}`; } // Á¦Ç° ÇÊÅ͸µ ÇÔ¼ö function filterProducts(category) { // Ä«Å×°í¸® ¹öư Ȱ¼ºÈ­ »óÅ º¯°æ document.querySelectorAll('.category-btn').forEach(btn => { btn.classList.remove('active'); if (btn.getAttribute('onclick').includes(category)) { btn.classList.add('active'); } }); // Á¦Ç° ÇÊÅ͸µ const filteredProducts = category === 'all' ? products : products.filter(product => product.category === category); // Á¦Ç° ±×¸®µå ¾÷µ¥ÀÌÆ® const productGrid = document.getElementById('productGrid'); productGrid.innerHTML = filteredProducts.map(createProductCard).join(''); } // ÆäÀÌÁö ·Îµå ½Ã Ãʱâ Á¦Ç° ¸ñ·Ï Ç¥½Ã document.addEventListener('DOMContentLoaded', function() { filterProducts('all'); });