Hola
Prueba ahora. Fíjate como ha de quedar arreglo a los cambios que hicistes
Código Javascript
:
Ver original<html>
<head>
<script type="text/javascript">
function valores() {
cual = 't[]';
f= document.formA;
todos = new Array();
for (var i = 0, total = f[cual].length; i < total; i++)
if (f[cual][i].checked) todos[todos.length] = f[cual][i].value;
return todos.join("&");
}
</script>
</head>
<body >
<form name="formA" id="formA" >
<input name="t[]" id="t[]" type="checkbox" value="0000" />
<input name="t[]" id="t[]" type="checkbox" value="1111" />
<input name="t[]" id="t[]" type="checkbox" value="2222" />
<input name="t[]" id="t[]" type="checkbox" value="3333" />
<input name="t[]" id="t[]" type="checkbox" value="4444" />
<input name="t[]" id="t[]" type="checkbox" value="5555" />
<button onclick="alert(valores())" >mostrar</button>
</form>
</body>
</html>
Suerte