This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
Overview
Download & View Solo_mayusculas.pdf as PDF for free.
SOLO LETRAS CON ESPACIOS <script type="text/javascript"> function validar(e) { tecla = (document.all) ? e.keyCode : e.which; if (tecla==8) return true; patron =/[A-Za-z\s]/; te = String.fromCharCode(tecla); return patron.test(te); }
EVITAR ARRASTRAR Y SOLTAR <script language="Javascript">
PROF. JEAN CARLOS CODIGO PHP EVITAR CLICK DERECHO <script language="Javascript"> EVITAR QUE PEGUEN INFORMACION EN LA CAJA DE TEXTO EVITAR QUE SELECCIONEN LA INFORMACION DE NUESTRA PAGINA <script type="text/javascript"> // IE Evitar seleccion de texto document.onselectstart=function(){ if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password") return false else return true; }; // FIREFOX Evitar seleccion de texto if (window.sidebar){ document.onmousedown=function(e){ var obj=e.target; if (obj.tagName.toUpperCase() == "INPUT" || obj.tagName.toUpperCase() == "TEXTAREA" || obj.tagName.toUpperCase() == "PASSWORD") return true; /*else if (obj.tagName=="BUTTON"){ return true; }*/ else return false; } } // End --> VALIDAR CAMPOS VACIOS Ejemplo de validación de un formulario <script> function validarEntero(valor){ //intento convertir a entero. //si era un entero no le afecta, si no lo era lo intenta convertir valor = parseInt(valor) //Compruebo si es un valor numérico if (isNaN(valor)) { //entonces (no es numero) devuelvo el valor cadena vacia return "" }else{ //En caso contrario (Si era un número) devuelvo el valor return valor } } function valida_envia(){ //valido el nombre if (document.fvalida.nombre.value.length==0){ alert("Tiene que escribir su nombre") document.fvalida.nombre.focus()
PROF. JEAN CARLOS CODIGO PHP return 0; } //valido la edad. tiene que ser entero mayor que 18 edad = document.fvalida.edad.value edad = validarEntero(edad) document.fvalida.edad.value=edad if (edad==""){ alert("Tiene que introducir un número entero en su edad.") document.fvalida.edad.focus() return 0; }else{ if (edad<18){ alert("Debe ser mayor de 18 años.") document.fvalida.edad.focus() return 0; } } //valido el interés if (document.fvalida.interes.selectedIndex==0){ alert("Debe seleccionar un motivo de su contacto.") document.fvalida.interes.focus() return 0; } //el formulario se envia alert("Muchas gracias por enviar el formulario"); document.fvalida.submit(); }