ejemplo de AJAX


/ Published in: JavaScript
Save to your folder(s)

Crea el elemento XMLHttpRequest y llama a una funcion del lado del server.

guardalo como f.js


Copy this code and paste it in your HTML
  1. function nuevoAjax(){
  2. var xmlhttp=false;
  3. try{
  4. xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
  5. }catch(e){
  6. try {
  7. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8. }catch(E){
  9. xmlhttp = false;
  10. }
  11. }
  12.  
  13. if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
  14. xmlhttp = new XMLHttpRequest();
  15. }
  16.  
  17. return xmlhttp;
  18. }
  19.  
  20.  
  21. function Nombre()
  22. {
  23. var Txt_Nombre=document.getElementById('idprueba').value;
  24. var resul = document.getElementById('resultado');
  25. var ajax = nuevoAjax();
  26. ajax.open("POST", "php_server.php",true);
  27. ajax.onreadystatechange=function() {
  28. if (ajax.readyState==4) {
  29. resul.innerHTML = ajax.responseText;
  30. }
  31. }
  32. ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
  33. ajax.send("nombre="+Txt_Nombre);
  34. return;
  35. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.