-
Notifications
You must be signed in to change notification settings - Fork 1
/
formulario.js
96 lines (54 loc) · 1.51 KB
/
formulario.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
class Error {
constructor() {
this.vacio = false;
this.longitud = false;
this.estado = false;
}
}
var nombreError = new Error();
var asuntoError = new Error();
var mensajeError = new Error();
var emailError = new Error();
function validarLongitud(palabra, n) {
if (palabra.length <= n) {
return true
} else {
return false
}
}
function validarEntrada(letra){
if((letra != "Backspace")){
return true;
}
else {
return false;
}
}
function validarVacio(palabra) {
if (palabra.length == 0) {
return true
} else {
return false
}
}
function mostrarTextoErrorVacio(campo, id) {
crearElementoError(campo, `El campo ${campo} no puede estar vacío`, id);
}
function mostrarTextoErrorEmail(campo, id) {
crearElementoError(campo, `El campo ${campo} debe tener la siguiente estructura: [email protected]`, id);
}
function mostrarTextoErrorLongitud(campo, id, n) {
crearElementoError(campo, `El campo ${campo} no puede tener mas de ${n} caracteres`, id);
}
function crearElementoError(campo, texto, id) {
var campoSeleccionado = document.querySelector(`#${campo}`);
var parrafo = document.createElement("p");
parrafo.className = "error";
parrafo.textContent = texto;
parrafo.id = id;
campoSeleccionado.insertAdjacentElement("beforebegin", parrafo);
}
function borrarElemento(id) {
var elemento = document.querySelector(`#${id}`);
elemento.remove();
}