castilho Posted January 4, 2012 Report Share Posted January 4, 2012 olágostaria de limitar uma mascara para ser preenchida somente com númerosse alguém poder me ajudarsegue o script:<script language="JavaScript" type="text/javascript"> function mascaraData(campoNascimento){ var nascimento = campoNascimento.value; if (nascimento.length == 2){ nascimento = nascimento + '/'; document.forms[0].nascimento.value = nascimento; return true; } if (nascimento.length == 5){ nascimento = nascimento + '/'; document.forms[0].nascimento.value = nascimento; return true; } }</script> Quote Link to comment Share on other sites More sharing options...
0 castilho Posted January 4, 2012 Author Report Share Posted January 4, 2012 desculpem-me por ter postado no lugar erradovou postar no lugar certo Quote Link to comment Share on other sites More sharing options...
Question
castilho
olá
gostaria de limitar uma mascara para ser preenchida somente com números
se alguém poder me ajudar
segue o script:
<script language="JavaScript" type="text/javascript">
function mascaraData(campoNascimento){
var nascimento = campoNascimento.value;
if (nascimento.length == 2){
nascimento = nascimento + '/';
document.forms[0].nascimento.value = nascimento;
return true;
}
if (nascimento.length == 5){
nascimento = nascimento + '/';
document.forms[0].nascimento.value = nascimento;
return true;
}
}
</script>
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.