Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/11/2012, 12:26
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 4 meses
Puntos: 1567
Respuesta: Error en envio de formulario

la función la veo bien, lo más probable es que el evento click lo tengas dentro del form sobre un input type submit ó sobre un <button>enviar</button>, tenés que ponerlo sobre un <input type="button"> ú algún otro que no te genere submit

una prueba sencilla
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  7.  
  8. <script type="text/javascript">
  9. //<![CDATA[
  10. $(document).ready(function(){
  11. $('#boton').click(function(){
  12.             //$('#info_valida').html('<img src="images/loader.gif" alt="" width="10" height="10" />').fadeOut(1000);
  13.             var ced = $('#ced_encargado').val();
  14.             var dataString = 'doc='+ced;
  15.             //alert("Se va a enviar");
  16.             $.ajax({   
  17.                 type: "POST",
  18.                 url: "valida.html",
  19.                 data: dataString,
  20.                 //alert("Bien hasta aqui con "+ced);
  21.                 success: function(data) {
  22.                     $('#info_valida').fadeIn(1000).html(data);
  23.                     //alert("Se envio y creo recibio");
  24.                 }
  25.             });
  26.             $('#enviar').show();
  27.         });
  28. });
  29.  
  30. //]]>
  31. </head>
  32. <input type="text" value="" id="ced_encargado">
  33. <input type="button" id="boton" value="envío desde input type button">
  34. <input type="button" id="boton" value="envío desde input type submit">
  35. <button id="boton">Envío desde tag button</button>
  36. </form>
  37. <div id="info_valida"></div>
  38. </body>
  39. </html>

valida.html

Código HTML:
Ver original
  1.     <body>
  2. No está en la BD
  3. </body>
  4. </html>

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.