방법1. addEventListener
const button = document.querySelector(".container button");
const main = document.querySelector("#main");
const qna = document.querySelector("#qna");
const result = document.querySelector("#result");
function begin() {
main.style.display = "none";
qna.style.display = "block";
}
button.addEventListener("click", begin);
방법2. in html
<button type="button" class="btn btn-outline-dark mt-3" onclick="js:begin()">시작하기</button>
https://homzzang.com/b/js-1317
'STUDY > Java Script' 카테고리의 다른 글
[idea] 사용자의 기기(pc, mobile) 이 다크 모드인지 아닌지 알 수 있으면 좋지 않을까? (1) | 2023.11.23 |
---|---|
var, let, const 차이점 (0) | 2023.11.23 |
nth-child(), first-child, second-child, last-child. (0) | 2023.11.22 |
Arrow Function 에서 brace 를 쓰면 return 값을 필요로 한다. (0) | 2022.07.23 |
JS 함수의 축약형: Arrow Function (like Swift Closure) (0) | 2022.07.23 |