Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/12/2011, 12:16
Avatar de ghidalgoram
ghidalgoram
 
Fecha de Ingreso: marzo-2008
Ubicación: Costa Rica
Mensajes: 446
Antigüedad: 16 años, 9 meses
Puntos: 7
De acuerdo Usar POST y GET al mismo tiempo en jQuery - AJAX

Pregunta fácil para expertos en jQuery.

¿Cuál es la sintáxis correcta para pasar valores usando los métodos POST y GET usando AJAX al mismo tiempo?


Código Javascript:
Ver original
  1. $(document).ready(function() {
  2.  
  3.     $("#btn_enviar").click(function(){
  4.         var txt_nombre = $('#txt_nombre').val();
  5.         var txt_apellidos = $('#txt_apellidos').val();
  6.  
  7.         // concatena
  8.         var dataString = 'txt_nombre=' + txt_nombre + '&txt_apellidos=' + txt_apellidos;
  9.  
  10.  
  11.         $.ajax({
  12.         data: dataString,
  13.         type: "POST",
  14.         url: "archivo.php",
  15.        
  16.    
  17.         success:
  18.           function(data){
  19.               alert("FELIZ NAVIDAD");
  20.           }
  21.         });
  22.     });
  23.  
  24. });


Con el código anterior se puede pasar campos de un formulario mediante el método POST. Si tengo variables que deseo pasarlas con GET, en este mismo código, ¿qué se debe agregar ?.

Gracias.
__________________
Loading...