Hola @maycolalvarez, bueno si! me refería a codigo javascript, creo que me palteé; pero de toas maneras ya logre bloquear y lo pongo por si en algún momento le es útil a alguien.
Gracias de toos modos...
Código Javascript
:
Ver original<script>
function activar()
{
if (document.getElementById('camion').checked==false){
document.getElementById('camiontxt').disabled=true;
}
if (document.getElementById('camion').checked==true){
document.getElementById('camiontxt').disabled=false;
}
if (document.getElementById('camion').checked==false){
document.getElementById('opciones').disabled=true;
}
if (document.getElementById('camion').checked==true){
document.getElementById('opciones').disabled=false;
}
}
</script>
Código HTML:
Ver original<form method="post" action="send.php" name="registro"> <input type="checkbox" value="Camion" name="numero[]" id="camion" onclick="activar();"/>Camion UNIDAD
<select id="opciones" name="opciones[]" disabled> <input name="cant[]" id="camiontxt" value="" type="text" disabled />