網頁

2013年4月17日

[html, javascript] 讓iframe自動調整高度

想讓iframe自動調整高度,只需在iframe的onload事件上加入javascript即可自動調整高度。

範例:
<iframe scrolling='auto' width='100%' src='http://blog.nux.tw' onload='this.style.height=parseInt(body.clientHeight, 10);'></iframe>