Neden iframe yüksekliği işin bu boyutlandırma alışkanlık?

1 Cevap php

I have a form on my main page (main.html) with the target set to an iframe on that page. The action of the frame on the main page is a php file. So, the php file displays in the iframe basically.

Şimdi, içerik yüksekliğini almak için php dosyasında bu komut dosyası var:

var x = document.body.scrollHeight;
window.parent.document.getelementbyid("iframe001").style.height=x;

If I alert x, the scrollheight is there, so x IS the scrollheight definetely. That part works. But, I cant set that value to the height of the iframe (iframe001).

Bunu yapamam neden herhangi bir fikir? Ve bunu nasıl?

Teşekkürler

1 Cevap

GetElementById olmalıdır getElementById

Ayrıca bu cevap size yardımcı olabilir http://stackoverflow.com/questions/1815129/dynamic-iframe-height-depending-on-php-content/1815166#1815166