Ver Mensaje Individual
  #6 (permalink)  
Antiguo 28/09/2010, 07:53
samardj
 
Fecha de Ingreso: marzo-2009
Mensajes: 120
Antigüedad: 15 años, 9 meses
Puntos: 1
Respuesta: duda sobre javascritp y php

Código Javascript:
Ver original
  1. function class_ajax(valor)
  2. {
  3.    
  4.    
  5.        
  6.         var url = "../logica/mi_pagina.php?id="+valor;
  7.         http = false;
  8.        
  9.         if (window.XMLHttpRequest) //firefox y safari
  10.         {
  11.             http = new XMLHttpRequest();
  12.             if (http.overrideMimeType)
  13.             {
  14.                 http.overrideMimeType('text/xml');
  15.             }
  16.         }
  17.         else if (window.ActiveXObject) // internet esplorer
  18.         {
  19.             try {
  20.                 http = new ActiveXObject("Msxml2.XMLHTTP");
  21.             } catch (e) {
  22.                 try {
  23.                     http = new ActiveXObject("Microsoft.XMLHTTP");
  24.                 } catch (e) {}
  25.             }
  26.         }
  27.         http.onreadystatechange = function (){
  28.                         if(http.readyState == 4)
  29.                         {
  30.                              if (http.status == 200) {
  31.                                 result_ajax = http.responseText;
  32.                                 alert('result_ajax')
  33.                             }else{
  34.                                 alert('connection failed');
  35.                             }
  36.                         }
  37.                     }
  38.         http.open('GET',url , true);
  39.         http.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
  40.         http.send(null);
  41.        
  42.            
  43.     }
  44.    
  45. }
puedes mandar variables por GET o POST