Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/07/2012, 18:08
soulip
 
Fecha de Ingreso: junio-2012
Ubicación: caracas
Mensajes: 33
Antigüedad: 12 años, 5 meses
Puntos: 0
Pregunta problema con combo

Código HTML:
Ver original
  1. <?php
  2. require("conec.php");
  3. ?>
  4.     <head>
  5.      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6.         <title>Mi sitio</title>
  7.         <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
  8.         <script type="text/javascript">
  9.             $(document).ready(function(){
  10.                 $('#estados').change(function(){
  11.                     var id=$('#estados option:selected').val();
  12.                     $('#municipios').load('ajax.php?id='+id);
  13.                 });
  14.                    $('#municipios').change(function(){
  15.                     var ids=$('#municipios option:selected' ).val();
  16.                     $('#parroquia').load('ajax1.php?id='+ids);
  17.                 });
  18.        
  19.             });
  20.            
  21.            
  22.                    
  23.  
  24.         </script>
  25.         </head>
  26.     <body >
  27.     <table>
  28.         <tr>
  29.             <th>Estados</th>
  30.             <td>
  31.            
  32.                 <select  id="estados">
  33.                 <option value="">Seleccionar</option>
  34.                 <?php $consulta ="select DISTINCT  codigo_entidad, des_entidad from ubicacion order by des_entidad asc";
  35.                     $result =pg_query($consulta);
  36.                 while($fila = pg_fetch_row($result)){
  37.                 echo "<option value='".$fila['0']."'>".$fila['1']." </option>";
  38.                 }
  39.                 ?>
  40.                </select>
  41.             </td>
  42.         </tr>
  43.         <tr>
  44.                 <th>Municipios</th>
  45.                 <td>
  46.                 <div id="municipios">
  47.                 <select   id="municipios">
  48.                 <option value="">Seleccione un Estado</option>
  49.               </select>
  50.               </div>
  51.             </td>
  52.         </tr>  
  53.          <tr>
  54.                 <th>Parroquia</th>
  55.                 <td>
  56.                 <div id='parroquia'>
  57.                 <select name="parroquia" id="parroquia">
  58.                 <option value="">Seleccione un Municipio</option>
  59.               </select>
  60.               </div>
  61.             </td>
  62.         </tr>  
  63.     </table>
  64.     </body>
  65.     </html>

Buenas mi problema es con el combo, carga bien, pero si al seleccionar el primer combo y la relacion que tiene con el segundo combo solo genera una opcion no tengo manera de cargar el tercer combo, pues como solo tengo una opcion en el segundo combo no hay cambio y no se activa el tercer combo, si me pudieran dar una idea de como resolverlo se los agradeceria! :)