Tchello Posted June 27, 2011 Report Share Posted June 27, 2011 No formulário há 3 campos para telefones: residencial, recados e celular. Como validar solicitando que ao menos um dos três esteja preenchido?? Quote Link to comment Share on other sites More sharing options...
0 Ricardo Portolan Posted June 27, 2011 Report Share Posted June 27, 2011 (edited) Olá Tchello.Um jeito muuuuuuito básico mas de fácil utilização é o código que fiz agora. Segue abaixo:<html> <head> <title>Teste</title> <script language="JavaScript"> function enviar() { if (formulario.residencial.value == "" && formulario.recados.value == "" && formulario.celular.value == "") { alert ("Informe ao menos um numero"); } else { formulario.submit(); } } </script> </head> <body> <form name="formulario"> <input type="text" name="residencial" /> <input type="text" name="recados" /> <input type="text" name="celular" /> <input type="button" value="Enviar" onClick="enviar()" /> </form> </body> </html>Abraço.---Ricardo Portolan Edited June 27, 2011 by Ricardo Portolan Quote Link to comment Share on other sites More sharing options...
0 Tchello Posted June 27, 2011 Author Report Share Posted June 27, 2011 Resolveu... Valeu... Quote Link to comment Share on other sites More sharing options...
Question
Tchello
No formulário há 3 campos para telefones: residencial, recados e celular. Como validar solicitando que ao menos um dos três esteja preenchido??
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.