
안녕하세요.
<script>
function open_box(){
$('#post-box').show()
}
function close_box(){
$('#post-box').hide()
}
</script>
</head>
<body>
<div class="mytitle">
<h1>내 생애 최고의 영화들</h1>
<button>영화 기록하기</button>
</div>
<div class="mypost" id="post-box">
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
<label for="floatingInput">영화url</label>
</div>
여기서 스크립트에서
function open_box(){
} open_box는 어디 나온건지 궁금하고
또 #post_box는 밑에 div class="mypost"에서 mypost 가 아닌 post_box로 적는것인지도 궁금합니다.
