-
Notifications
You must be signed in to change notification settings - Fork 8
/
validacion.js
26 lines (20 loc) · 915 Bytes
/
validacion.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
function validarDatos(){
window.event.preventDefault()
if (document.form.nombre.value=="" ) {
alert("Campo nombre es obligatorio")
document.form.nombre.focus()
}else if (document.form.email.value=="") {
alert("Campo e-mail es obligatorio")
document.form.email.focus()
}else if (document.form.asunto.value=="" ) {
alert("Campo Asunto es obligatorio")
document.form.asunto.focus()
}else if (document.form.mensaje.value=="" || document.form.mensaje.value.length <= 50 ){
alert("Campo Mensaje es obligatorio y debe contener máximo 50 carateres")
document.form.mensaje.focus()
} else if (document.form.email.value.indexOf('@')==-1 ||
document.form.email.value.indexOf('.')==-1 ) {
alert("e-mail inválido")
}
}
document.querySelector('form').addEventListener('submit',validarDatos)