Javascript: Contando caracteres de uma string
Vamos utilizar a função length.
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Validar Campo</title> <script type="text/javascript"> function validaCampo(){ var campo = document.getElementById('campo'); var txt = document.getElementById('campo').value; var n = txt.length; if(n < 6){ alert("O Texto digitado tem " + n + " caracteres"); return false; campo.focus(); } return true; } </script> </head> <body> <form name="frm1" action="pagina.php" method="post" onSubmit="return validaCampo()"> <label for="digite">Digite o texto:</label> <input name="campo" id="campo" type="text" size="20" maxlength="6" /> </form> </body> </html> |
Belo código, Deus te abençoe
Amém