Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const loginForm = document.forms[0]
- // loginForm.addEventListener("submit", function(e){
- // e.event.preventDefault()
- // this.submit()
- // })
- function validate(form){
- // console.dir(form[0])
- // console.dir(form[1])
- const login = document.querySelector("input[name='login']")
- const password = document.querySelector("input[name='password']")
- console.dir(login)
- console.dir(password)
- return false
- }
- loginForm.addEventListener("submit", function(e){
- e.preventDefault()
- if(validate(this))
- this.submit()
- else
- alert("Форма не отправлена")
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement