Recent Posts
Recent Comments
목록프로젝트/Functions (1)
게으른개발너D

App.js (유효성 검사 실행을 불러올 컴포넌트) 유효성 검사를 실행할 email과 password input form을 불러온다. form을 submit 할 버튼에 addEventListener로 유효성 검사를 실행할 VerifyForms class의 instance를 만든다. import VerifyForms from 'VerifyForms.js'; class App { constructor({ $target }) { this.$target = $target; this.$email = document.querySelector("#email"); this.$password = document.querySelector("#password"); this.$btn = document.querySelecto..
프로젝트/Functions
2023. 8. 14. 16:55