如何动态设置嵌套的iframe的高度?
<iframe height=0 width=0 id='ifm' style="display:no" src="a.aspx"></iframe>
js
document.ifm.style.display='';
document.all('ifm').height=400;
document.all('ifm').width=600;
js
document.ifm.style.display='';
document.all('ifm').height=400;
document.all('ifm').width=600;