25-03-07
๐ Daily Reportโ
๐ ํ๋ก์ ํธ ์ํฉโ
๋๋ ๋์ฒด ๋ฐฑ์๋ ๊ฐ๋ฐ์์ธ๊ฐ ํผ๋ธ๋ฆฌ์ ์ธ๊ฐ
๐ forEach๋ฅผ ๋ชป์ฐ๋ ์ ์ฌ ๋ฐฐ์ดโ
getElementsByClassName
์ผ๋ก ๊ฐ์ ธ์จ ๊ฐ์ฒด์ ์ forEach๊ฐ ์๋จนํ๋ ํ๋๋,
๋ฐํ ํ์
์ด HTMLCollection
์ด์๋ค. ์ฌํ๊ฒ๋ ์ด๋ฌํ ์งญ ๋ฐฐ์ด์ forEach๊ฐ ์๋ค๊ณ ํ๋ค.
ํด๊ฒฐ ๋ฐฉ๋ฒ์ Array.from()
์ ์ด์ฉํด์ ๋ฐฐ์ด๋ก ๋ณํํ๋ฉด ๋๋ค.
admin_store_registration.js
function setMethod(event) {
const selectedButton = event;
console.log(event);
// ๋ฒํผ ์คํ์ผ ๋ณ๊ฒฝ
const methodButtons = document.getElementsByClassName('reserve-method-button');
methodButtons.forEach(btn => {
btn.classList.remove('active');
});
selectedButton.classList.add('active');
...
}