Ver Mensaje Individual
  #7 (permalink)  
Antiguo 22/04/2009, 09:56
superdober
 
Fecha de Ingreso: agosto-2007
Mensajes: 248
Antigüedad: 17 años, 4 meses
Puntos: 1
De acuerdo Respuesta: Inhabilitar Botones Cuando un Input es Vacio

La Solucion es:

PASO 1: FUNCION JAVASCRIPT


Código:
<script language="javascript" type="text/javascript">
function es_vacio()
  {
  
   if (document.getElementById('numeroenvio').value=="")
      {	  
       document.getElementById('sin_ventas').disabled=true;
       document.getElementById('todo_vendido').disabled=true;
      }
  
   else {
         document.getElementById('sin_ventas').disabled=false;
         document.getElementById('todo_vendido').disabled=false;
         }
   }	
   	    
</script>

PASO 2: INPUT


Código:
  <input type="text" name="numeroenvio" id="numeroenvio" maxlength="5" size="30" onkeyup="es_vacio()"/>

PASO 3: BOTONES


Código:
<input type="submit" disabled="true" id="sin_ventas" name="sin_ventas" value="Sin Ventas" onclick="return sin_venta();"/>      
   

 <input type="submit" disabled="true" id="todo_vendido" name="todo_vendido" value="Todo Vendido" onclick="return todos_vendido();"/>
Gracias por vuestra colaboración.