En primer lugar, definimos el siguiente código HTML de demo.asp:
Código html:
En segundo lugar, procedemos a cargar el ajax.js:Ver original
<!-- #include file="ajax.js" --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <table width="728" height="167" border="1"> <caption> Prueba Ajax </caption> <tr> </tr> <tr> <td colspan="2"> <div id="panel"> Panel </div> </td> </tr> </table> </body> </html>
Código JavaScript:
Ver original
<script language="javascript" type="text/javascript"> function cargaSolapa(selectDestino,aspDestino,valor) { // ajax=nuevoAjax(); // Envio al servidor a que lea la página ajax.open("GET", aspDestino, true); ajax.onreadystatechange=function() { if (ajax.readyState==4) { document.getElementById(selectDestino).innerHTML = ajax.responseText; } } ajax.send(null); } function nuevoAjax() { /* Crea el objeto AJAX. Esta funcion es generica para cualquier utilidad de este tipo, por lo que se puede copiar tal como esta aqui */ var xmlhttp=false; try { // Creacion del objeto AJAX para navegadores no IE xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { try { // Creacion del objet AJAX para IE xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch(E) { xmlhttp=false; } } if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp=new XMLHttpRequest(); } return xmlhttp; } </script>
Por último, solo nos falta modificar las páginas html que queremos mostrar al hacer "Click" sobre la tabla!
Espero os haya sido de utilidad!