14/04/2012, 21:09
|
| Colaborador | | Fecha de Ingreso: junio-2007 Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 4 meses Puntos: 1567 | |
Respuesta: Como pedir ingresar solo palabras!!! Ejemplo:
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <script type="text/javascript"> function validar(idcampo, mensaje) { var cadena = document.getElementById(idcampo).value; var exp_reg = /^[a-z\u00C0-\u00ff]+$/i; // expresión regular para letras(máy o minus), acentuadas o no, var verifica = exp_reg.test(cadena); if (verifica == true){ //alert('ok'); document.getElementById(mensaje).innerHTML = "Correcto"; }else { //alert('error'); document.getElementById(mensaje).innerHTML = "Incorrecto"; return false; } } <input type="text" onkeyup="validar(this.id,'mensaje_nombre');" id="nombre" /> <span id="mensaje_nombre"><!-- aqui el mensaje a medida que se introducen caracteres --></span> <input type="text" onkeyup="validar(this.id,'mensaje_apellido');" id="apellido" /> <span id="mensaje_apellido"><!-- aqui el mensaje a medida que se introducen caracteres --></span>
Saludos
__________________ La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R. |