sexfashion Postado Setembro 9, 2004 Denunciar Share Postado Setembro 9, 2004 Como faço para selecionar todas as checkbox de uma página? Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 SliM ShadY Postado Setembro 10, 2004 Denunciar Share Postado Setembro 10, 2004 Oh cara... tenho um script aqui pra você... <html> <head> <title>Seleciona todas</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <form name="selecao" method="post" action=""> <p> <input name="op1" type="checkbox" id="op1" value=""> Opção 1 <br> <input name="op2" type="checkbox" id="op2" value=""> Opção 2<br> <input name="op3" type="checkbox" id="op3" value=""> Opção 3<br> <input name="op4" type="checkbox" id="op4" value=""> Opção 4<br> <input name="op5" type="checkbox" id="op5" value=""> Opção 5<br> <input name="op6" type="checkbox" id="op6" value=""> Opção 6 </p> <p>Selecionar Todas <input name="todas" type="checkbox" id="todas" value="checkbox" onClick="selecionar_todas(this.checked)"> </p> </form> <script language="JavaScript"> formulario=document.selecao; function selecionar_todas(retorno){ if(retorno==true){ for(i=0;i<formulario.length;i++){ if(formulario.elements[i].type=="checkbox" && formulario.elements[i].name!="todas"){ if(formulario.elements[i].checked==false){ formulario.elements[i].checked=true; } } } } else { for(i=0;i<formulario.length;i++){ if(formulario.elements[i].type=="checkbox" && formulario.elements[i].name!="todas"){ if(formulario.elements[i].checked==true){ formulario.elements[i].checked=false; } } } } } </script> </body> </html> Qualquer dúvida posta ae... falowS! Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
sexfashion
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.