
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
postingbox 안 id="title" 영화 제목을 적는 칸에 제목을 적고 기록하기를 눌러도 콘솔에 제목이 출력되지 않습니다
작성한 코드 및 에러 메세지
Failed to load resource: net::ERR_FILE_NOT_FOUND
<div class="postingbox" id="postingbox"> <div class="form-floating mb-3"> <input type="email" class="form-control" id="image" placeholder="영화 이미지 주소"> <label for="floatingInput">영화 이미지 주소</label> </div> <div class="form-floating mb-3"> <input type="email" class="form-control" id="title" placeholder="영화 제목"> <label for="floatingInput">영화 제목</label>
function makeCard(){
let image = $('#image').val();
let title = $('#title').val();
let comment = $('#comment').val();
let star = $('#star').val();
console.log(image, title, comment)
