1 2 3 4 window.addEventListener('load', inicializar, false);5 6 7 function inicializar(event) {8 9 var iframe = document.createElement('iframe');10 iframe.addEventListener('load', paginaCargada, false);11 window.document.body.appendChild(iframe);12 13 14 //iframe.setAttribute('src', 'http://www.google.es/');15 16 //window.document.body.innerHTML = 'hola';17 }18 19 20 function paginaCargada(event) {21 window.document.body.innerHTML = analizer(this);22 //if (this instanceof Object) alert('es objeto');23 }24 25 function analizer(object) {26 s = '<div style="padding-left:24px;">';27 for (key in object) {28 s += '<b>' + key + '</b>';29 if (false && object[key] instanceof Object)30 s += analizer(object[key]);31 else 32 s += object[key];33 }34 s += '</div>';35 return s;36 }37 38
Este ShareCode tiene versiones:
Enlace
El enlace para compartir es: