Guest marcus vinicius cavalheiro Posted August 30, 2005 Report Share Posted August 30, 2005 ....estou tendo bantante dificuldades em validar um formulario contendo botoes do tipo radio em um formulario dinamico (php)..... alguém pode me ajudar??? Quote Link to comment Share on other sites More sharing options...
0 iSoron Posted August 31, 2005 Report Share Posted August 31, 2005 Sério? Então acho que pessoal do JavaScript pode te ajudar. []'s Quote Link to comment Share on other sites More sharing options...
0 OSJunior Posted August 31, 2005 Report Share Posted August 31, 2005 Num intendi nada...como está seu código? Quote Link to comment Share on other sites More sharing options...
0 Guest Zé Telo Posted September 13, 2005 Report Share Posted September 13, 2005 cara usa Java Script pra resolver... toma um codigo ae... basta você chamar ele no seu form:<form action="nome_pagina" name="FormNome" onSubmit="return checa(this);">CODIGO:<script>function checa(nform) { //validacao de radio buttons sem saber quantos são marcado = -1 for (i=0; i<nform.NOME_DO_RADIO.length; i++) { if (nform.NOME_DO_RADIO.checked) { marcado = i resposta = nform.NOME_DO_RADIO.value } } if (marcado == -1) { alert("Selecione uma resposta."); nform.NOME_DO_RADIO[0].focus(); return false; } return true;}</script> Quote Link to comment Share on other sites More sharing options...
Question
Guest marcus vinicius cavalheiro
....estou tendo bantante dificuldades em validar um formulario contendo botoes do tipo radio em um formulario dinamico (php)..... alguém pode me ajudar???
Link to comment
Share on other sites
3 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.