라디오 버튼 선택해서 셀렉트 박스 컨트롤
주차가능 여부 주차가능 주차불가 주차가능 대수 1대 2대 3대 4대 5대 주차가능 대수 불가 function showParkings(id, text, btn) { console.log('parkings'); document.getElementById(id).style.display = 'block'; // hide the lorem ipsum text document.getElementById(text).style.display = 'none'; // hide the link btn.style.display = 'none'; }
2018.04.19