input전달 (1) 썸네일형 리스트형 [자바스크립트 js / 프로젝트2] input에 입력된 내용 보여주기 / 메시지 전달 두 번째 프로젝트 시-작 ! html 메모를 남겨주세요. 메모가 비었습니다. 메모를 입력해 주세요. 전달된 메모 뚝딱 할 수 있다! js (function(){ const form = document.querySelector('#message-form'); form.addEventListener('submit', function(e){ e.preventDefault(); const msg = document.querySelector('#message'); const feedback = document.querySelector('.feedback'); const msgCnt = document.querySelector('.message-content'); if ( msg.value === '' ){ fee..