05/08/2004, 09:12
|
| | | Fecha de Ingreso: mayo-2004
Mensajes: 1.266
Antigüedad: 20 años, 7 meses Puntos: 2 | |
tendrías que usar eval
input type="checkbox" name="checkbox1" onclick="f_funcion(this)">
function f_funcion(check)
{
tipo="tipo";
if (check.checked){
var oSelect=eval("document.forms[0]."+check.name+tipo)
}
}
Con este ejemplo tendrías en oSelect el select que se llama checkbox1tipo |