fantasma Postado Outubro 26, 2005 Denunciar Share Postado Outubro 26, 2005 tenho este script que quando clica em selecionar todos ele seleciona todos....pergunta tem como selecionar somente alguns, os que eu queira<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.type=="checkbox" && formulario.elements.name!="todas"){ if(formulario.elements.checked==false){ formulario.elements.checked=true; } }}} else {for(i=0;i<formulario.length;i++){ if(formulario.elements.type=="checkbox" && formulario.elements.name!="todas"){ if(formulario.elements.checked==true){ formulario.elements.checked=false; } }}}}</script></body></html> Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 lemissel Postado Outubro 26, 2005 Denunciar Share Postado Outubro 26, 2005 Cara, me explica melhor por favor.Tu queres que a pessoa marque aleatóriamente qualquer um dos checboxe's??? Ou tu precisa ter determinados grupos, digamos um botão igual ao selecionar todos que seleciona um grupo de opções:Botão = Selecionar ímpares.Seleciona check's: 1,3,5,7,... A={x|x positivo e ímpares} heheh isso entre chaves é brincadeira... heheheh Botão = Selecionar pares.Seleciona check's: 2,4,6,8,...Vê aí que a gente tenta fazer algo Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 fantasma Postado Outubro 27, 2005 Autor Denunciar Share Postado Outubro 27, 2005 isso mesme que eu quero.......tem como Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
fantasma
tenho este script que quando clica em selecionar todos ele seleciona todos....pergunta tem como selecionar somente alguns, os que eu queira
<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.type=="checkbox" && formulario.elements.name!="todas"){
if(formulario.elements.checked==false){
formulario.elements.checked=true;
}
}
}
} else {
for(i=0;i<formulario.length;i++){
if(formulario.elements.type=="checkbox" && formulario.elements.name!="todas"){
if(formulario.elements.checked==true){
formulario.elements.checked=false;
}
}
}
}
}
</script>
</body>
</html>
Link para o comentário
Compartilhar em outros sites
2 respostass 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.