Ver Mensaje Individual
  #7 (permalink)  
Antiguo 14/02/2013, 09:28
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 6 meses
Puntos: 1567
Respuesta: funciona solo con alert javascript

Si, ya veo, hacelo asi

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.  <head>
  5.  <title>titulo</title>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  7.  
  8. <script type="text/javascript">
  9.  //<![CDATA[
  10. var ajax;
  11. function Buscador(){
  12. var xmlHttp=null;
  13. if (window.ActiveXObject)
  14. xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
  15. else
  16. if (window.XMLHttpRequest)
  17. xmlHttp = new XMLHttpRequest();
  18. return xmlHttp;
  19. }
  20.  
  21. function mando_pcto(){
  22.  
  23.  
  24. //alert("VERIFIQUE ADICIONALES 1");
  25. ajax = Buscador();
  26. var Resultados = document.getElementById('resultado_adicionales');
  27. ajax.open("GET","hola.html");
  28. ajax.onreadystatechange = function()
  29. {
  30. if (ajax.readyState == 4){
  31. Resultados.innerHTML = ajax.responseText + '1ª función';;
  32. mando_pcto2();
  33. }
  34. }
  35. ajax.send(null)
  36. }
  37.  
  38.  
  39. function mando_pcto2(){
  40.  
  41.  
  42. //alert("VERIFIQUE ADICIONALES");
  43. //ajax = Buscador();
  44. var Resultados = document.getElementById('resultado_adicionales2');
  45. ajax.open("GET","hola.html");
  46. ajax.onreadystatechange = function()
  47. {
  48. if (ajax.readyState == 4){
  49. Resultados.innerHTML = ajax.responseText + '2ª función';
  50. }
  51. }
  52. ajax.send(null)
  53. }
  54.  
  55. //]]>
  56.  </script>
  57. </head>
  58.  <body>
  59.  <button onclick="mando_pcto();">llamar fnc</button>
  60.  <div id="resultado_adicionales"></div>
  61.  <div id="resultado_adicionales2"></div>
  62.  </body>
  63.  </html>
SAludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.