Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/08/2015, 09:41
dcheda
 
Fecha de Ingreso: agosto-2015
Mensajes: 4
Antigüedad: 9 años, 3 meses
Puntos: 0
Respuesta: Problema con select dependientes y ajax

Me falto añadir en cerrar.php el siguiente código para que muestre u oculte los div

Código PHP:
Ver original
  1. <script type="text/javascript">
  2. function mostrar(id) {
  3.     if (id == "0") {
  4.         $("#0").hide();
  5.         $("#COMPOK").hide();
  6.         $("#COMPCAMB").hide();
  7.         $("#COMPOKREQ").hide();
  8.         $("#FALLIDA").hide();
  9.         $("#COMPOKRET").hide();
  10.        
  11.     }
  12.     if (id == "COMPOK") {
  13.         $("#0").hide();
  14.         $("#COMPOK").show();
  15.         $("#COMPCAMB").hide();
  16.         $("#COMPOKREQ").hide();
  17.         $("#COMPOKRET").hide();
  18.     }
  19.  
  20.     if (id == "COMPCAMB") {
  21.         $("#0").hide();
  22.         $("#COMPOK").hide();
  23.         $("#COMPCAMB").show();
  24.         $("#COMPOKREQ").hide();
  25.         $("#COMPOKRET").hide();
  26.     }
  27.  
  28.     if (id == "COMPOKREQ") {
  29.         $("#0").hide();
  30.         $("#COMPOK").hide();
  31.         $("#COMPCAMB").hide();
  32.         $("#COMPOKREQ").show();
  33.         $("#COMPOKRET").hide();
  34.        
  35.     }
  36.     if (id == "COMPOKRET") {
  37.         $("#0").hide();
  38.         $("#COMPOK").hide();
  39.         $("#COMPCAMB").hide();
  40.         $("#COMPOKREQ").hide();
  41.         $("#COMPOKRET").show();
  42.        
  43.     }
  44.     if (id == "COMPFALCO") {
  45.         $("#0").hide();
  46.         $("#FALLIDA").show();
  47.                
  48.     }
  49.     if (id == "COMPFAVAS") {
  50.         $("#0").hide();
  51.         $("#FALLIDA").show();
  52.        
  53.     }
  54.  
  55.    
  56. }
  57. </script>