Carlos Rocha Postado Março 3, 2009 Denunciar Share Postado Março 3, 2009 Pessoal, tenha um script aqui que formata quase tudo.Aqui vai minha colaboração:<script type="text/javascript"> function mascara(e,src,mask) { if(window.event) { _TXT = e.keyCode; } else if(e.which) { _TXT = e.which; } if(_TXT > 47 && _TXT < 58) { var i = src.value.length; var saida = mask.substring(0,1); var texto = mask.substring(i); if(texto.substring(0,1) != saida) { src.value += texto.substring(0,1); } return true; } else { if (_TXT != 8) { return false; } else { return true; } } } </script> Aplicação no HTML: <form> CEP: <input type="text" name="cep" value="" onkeypress="return mascara(event,this,'#####-###');" size="9" maxlength="9"> <br> CPF: <input type="text" name="cpf" value="" onkeypress="return mascara(event,this,'###.###.###/##');" size="14" maxlength="14"> <br> DATA: <input type="text" name="data" value="" onkeypress="return mascara(event,this,'##/##/####');" size="10" maxlength="10"> <br> CNPJ: <input type="text" name="cnpj" value="" onkeypress="return mascara(event,this,'##.###.####/####-##');" size="19" maxlength="19"> <br> TELEFONE: <input type="text" name="telefone" value="" onkeypress="return mascara(event,this,'## ####-####');" size="12" maxlength="12"> </form> Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Leandro Cabral Postado Outubro 14, 2011 Denunciar Share Postado Outubro 14, 2011 Valeu... com certeza isso foi de grande ajuda para muitos... Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Carlos Rocha
Pessoal, tenha um script aqui que formata quase tudo.
Aqui vai minha colaboração:
Aplicação no HTML:Link para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.