Il contentDocument è disponibile solo dopo aver appeso l'iframe nel documento
sarebbe quello che vorrei ottenere ma non funziona.chiuso il nuovo docuument viene immeditamente visualizzato!! faccio questo perchè non è accessibile in scrittura il contentDocument dell ' Iframe....Codice PHP:var Iframe=document.createElement('iframe');
var mypage=document.open('text/html');
mypage.write('<h1>ciao mondo</h1>');
mypage.close();
Iframe.src=mypage
![]()
codice:var ifr = document.createElement("iframe"); document.body.appendChild(ifr); var Doc = ifr.contentWindow.document; //Ora con Doc ci fai quello che vuoi![]()

Rispondi quotando