-
Notifications
You must be signed in to change notification settings - Fork 0
/
validar_caracteres.js
36 lines (25 loc) · 1.11 KB
/
validar_caracteres.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
var textoIngresado = document.getElementById("input-texto");
textoIngresado.addEventListener("input",function(){
var patron = /^[a-z\s]{1,200}$/;
var errorTexto = document.querySelector("#error-texto");
if(textoIngresado.value.length > 0 &&!patron.test(textoIngresado.value)){
errorTexto.classList.remove("invisible")
swal({
title:"caracter incorrecto",
text:"vuelva intentar",
icon:"error"
})
}else{
errorTexto.classList.add("invisible")
var encriptadoTexto = document.querySelector("#btn-encriptar");
encriptadoTexto.addEventListener("click", function(event){
event.preventDefault();
document.getElementById("msg").value = encriptarTexto(textoIngresado.value)
})
var desencriptadoTexto = document.querySelector("#btn-desencriptar");
desencriptadoTexto.addEventListener("click",function(event){
event.preventDefault();
document.getElementById("msg").value = desencriptarTexto(textoIngresado.value)
})
}
});