2013-01-02 24 views
0

好吧,我在這裏嘗試了兩種解決方案(論壇到目前爲止什麼都沒有發生),這裏是我的代碼:試圖調整的iframe

<script> 
<!---tried this without success--> 
$("#mySupport").resizable(); 
alert("Hello! I am an alert box!!"); 
<!--also tried this from the forums--> 
$(document).ready(function(){ 
    $('#mySupport', window.parent.document).height($(document).height()); 
}); 

</script> 
<iframe id="mySupport" width="960" height="900" seamless src="https://enterraglobal.zendesk.com/" scrolling="no"> 



</iframe> 
<!--I don't know probably I'm missing something--> 

回答

0
$(document).ready(function(){ 
    $("#mySupport").height("100px"); 
}); 
0

我想你想設置iframe的大小與外部文檔的大小相同。如果是這樣的:

$(document).ready(function() 
{ 
    $('#mySupport').height($(document).height()); 
    $('#mySupport').width($(document).width()); 
}); 

jsfiddle