2010-01-27 150 views
0

我試圖讓iframe在用戶點擊iframe中的鏈接後自動調整大小。我怎樣才能做到這一點?Iframe高度變化

+0

http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on -內容 – Sampson 2010-01-27 16:44:19

回答

0

你需要使用一些Javascript才能做到這一點。如果你有興趣做的iframe增長,以適應它裏面裝的頁面,你可以做這樣的事情:

parent.ResizeFrame({documentLoaded}.height()); 

的{} documentLoaded可你想借鑑你的身高任何元素。父頁面上添加該功能

function ResizeFrame(height) { 
    getElementById("elementid").height(height); 
} 

使用jQuery工作的例子是這樣的:

function ResizeFrame(height) { 
    $("#iframeid").height(height); 
} 

parent.ResizeFrame($("#fileForm").height());