Kakaroto Posted July 2, 2004 Report Share Posted July 2, 2004 Como faço para verificar se um input começa com pontoexemplose ele receber o valor = .testenão posso deixar passar Quote Link to comment Share on other sites More sharing options...
0 Fabi SP Posted July 2, 2004 Report Share Posted July 2, 2004 Javascript:function verificaPrimeiroCaracter(pText) { if (pText.substr(0, 1) == ".") { return false; } }Passe o texto a ser verificado como parâmetro para esta função. Algo como onClick="javascript:verificaPrimeiroCaracter(variavel)" Quote Link to comment Share on other sites More sharing options...
0 Kakaroto Posted July 2, 2004 Author Report Share Posted July 2, 2004 Obrigado Fabi :* Quote Link to comment Share on other sites More sharing options...
Question
Kakaroto
Como faço para verificar se um input começa com ponto
exemplo
se ele receber o valor = .teste
não posso deixar passar
Link to comment
Share on other sites
2 answers 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.