1
單擊i frame content頁面中的show hide按鈕時,框架高度不會自動增加或減少。我如何解決這個問題?單擊iframe內容頁面中的show hide按鈕時,iframe高度不會自動增加
<iframe class="" id="ds" seamless="" src="demo.aspx" style="width:100%; border:none; height:100%;"></iframe>
$("#ds").load(function() {
$(this).height($(this).contents().find("html").height());
});
看起來像一個CSS問題,你是否也可以發佈代碼的HTML部分? –
hi frnd檢查html代碼 –
是iframe的域名與您的網站相同嗎?如果沒有,這將無法正常工作,因爲如果它們來自其他域,則無法訪問iframe的內容 – WisdmLabs