Код: Выделить всё
// acsesProperty buttons display
let typeBtns = document.querySelectorAll("#typeBtn");
let acsesPropertys = document.querySelectorAll("#acsesProperty");
typeBtns[0].addEventListener("click", () => {
acsesPropertys[0].classList.remove("d-none");
acsesPropertys[1].classList.add("d-none");
acsesPropertys[2].classList.add("d-none");
});
typeBtns[1].addEventListener("click", () => {
acsesPropertys[1].classList.remove("d-none");
acsesPropertys[0].classList.add("d-none");
acsesPropertys[2].classList.add("d-none");
});
typeBtns[2].addEventListener("click", () => {
acsesPropertys[2].classList.remove("d-none");
acsesPropertys[1].classList.add("d-none");
acsesPropertys[0].classList.add("d-none");
});
Подробнее здесь: https://stackoverflow.com/questions/797 ... s-function