3
A
回答
3
的簡單方法之一使用javascript:
<script language="JavaScript">
function autoResize(id){
var newheight;
var newwidth;
if(document.getElementById){
newheight=document.getElementById(id).contentWindow.document .body.scrollHeight;
newwidth=document.getElementById(id).contentWindow.document .body.scrollWidth;
}
document.getElementById(id).height= (newheight) + "px";
document.getElementById(id).width= (newwidth) + "px";
}
</script>
<IFRAME SRC="Iframef/iframep.aspx" width="100%" height="200px" id="iframe1" marginheight="0" frameborder="0" onLoad="autoResize('iframe1');"></iframe>
相關問題
- 1. 根據內容調整iframe高度
- 2. 從iFrame內容調整iFrame高度?
- 3. 根據其內容調整div高度
- 4. 根據內容調整tableviewcell高度
- 5. 根據內容動態調整iframe高度
- 6. 根據內容高度自動調整iframe的大小
- 7. 根據內容自動調整iframe高度
- 8. iframe沒有調整內容高度
- 9. 調整iframe內容的高度iframe中的內容
- 10. 根據iframe中的內容調整iframe及其父高度的大小
- 11. 根據內容高度調整圖像高度
- 12. 根據iframe內容調整模式
- 13. 根據容器調整「div」的高度
- 14. 如何根據元素高度動態調整iframe高度?
- 15. window.open根據動態內容自動調整高度和寬度
- 16. 根據內容的高度調整iFrame的大小隻能放大?
- 17. 如何通過iframe的是調整大小根據內容高度
- 18. 根據內容不一致高度計算調整iFrame的尺寸
- 19. 根據更改後的內容動態調整jQuery Fancybox的iframe高度
- 20. 根據div高度調整img高度
- 21. 如何根據容器高度自動調整菜單高度
- 22. 調整的iframe基於I幀高度和內容寬度
- 23. IFrame根據瀏覽器的「高度」「寬度」進行調整
- 24. 調整寬度和高度的iframe根據屏幕尺寸
- 25. Gridster根據內容高度自動調整大小
- 26. 根據其內容動態調整UITextView的高度?
- 27. ScrollView根據UIView中的內容自動調整其高度?
- 28. 如何根據內容調整QTableView高度?
- 29. 如何根據內容調整div的高度?
- 30. 如何根據內容css調整高度
http://whathaveyoutried.com?請告訴我們你到目前爲止的情況。 SO不是代碼編寫服務,如果您提供了自己的工作證據,您將得到更好的迴應。請參閱[常見問題](http://stackoverflow.com/faq)。 – freefaller 2012-08-06 10:49:09
對不起freefaller,新手在這裏。我添加了aspx標記,不知道哪裏丟了。再次編輯問題。 – MaxRecursion 2012-08-06 13:08:33