Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/09/2011, 07:29
thehack
 
Fecha de Ingreso: abril-2010
Mensajes: 151
Antigüedad: 14 años, 7 meses
Puntos: 1
Respuesta: Error para enviar form ajax

Código Javascript:
Ver original
  1. var nacimiento ={
  2. nuevo: function(){
  3. $.ajax({
  4.             type: 'POST',
  5.             url: 'ARCHIVO PHP O DIRECCION URL',
  6.             data: 'DATOS A ENVIAR POR POST',
  7. success: function(h){
  8.                 switch(h.charAt(0)){
  9.                     case '0': //Error
  10.                 my_popup.procesando_fin();
  11.                     alert('Error', h.substring(3));;
  12.  
  13.                         break;
  14.                     case '1': //OK
  15.                            
  16.                         $('#main').addClass('error').html(h.substring(3)).slideDown();
  17.                         $('.loader').show();
  18.                         break;
  19.                 }
  20.                 //
  21.            
  22.  
  23.             }
  24.          });
  25. }
  26.  
  27. }

formulario

<div id="main">

<div class="field clearfix">

<label for="municipo">MUNICIPIO</label>
<input type="text" class="text ui-corner-all form-input-text box-shadow-soft" style="max-width:360px;" id="g_municipio" name="g_municipio" maxlength="35">
</div>

<div class="buttons">

<input type="button" class="ui-button-positive ui-state-default ui-corner-all box-shadow-soft ui-button ui-widget ui-button-text" id="new" value="Guardar cambios" onclick="nacimiento.nuevo('true')"/>
</div>

</div>

asi envio yo el formulario con js es un ejemplo