24/02/2011, 14:35
|
| | Fecha de Ingreso: agosto-2010
Mensajes: 1
Antigüedad: 14 años, 3 meses Puntos: 0 | |
Respuesta: Combobox Dependiente, Volver al Indice 0 <!-- Combobox Dependientes -->
<script language="javascript">
//Inicializamos jQuery
$(document).ready(function(){
// Parametros para Ciudad
$("#ciudad").change(function () {
$("#ciudad option:selected").each(function () {
//alert($(this).val());
elegido=$(this).val();
if(elegido == 1){ // 1 es igual a Ciudad Santiago.
$.post("../controlador/Comuna.php", { elegido: elegido }, function(data){
$("#comuna").html(data),
$("#showComuna").fadeIn();
});
}else{
$("#showComuna").fadeOut(),
$("#comuna").val('');
}
});
})
});
</script>
tiene que agregar esto $("#comuna").val(''); despues de $("#showComuna").fadeOut(),
Saludos |