이미지 입력입력된 내용댓글 삭제HTML jQuery Comment 작성자 덧글 내용 JavaScript$('#comment_form').submit(function(){ //유효성검사 if(!($('#user_name').val())){ $('#error').html('작성자를 입력해주세요.'); $('#user_name').focus(); return false; } if(!($('#comment').val())){ /* ... */ } let date = new Date(); // 날짜 년,월,일 시간 구하는 구문 // ... let today = `${yy}-${mm}-${dd} ${hh}:${mi}:${ss}`; ..