0

わかりました、ここから2つの解決策を試しました(フォーラムとこれまでのところ何も起こりませんでした)ここに私のコードがあります:

<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-->
4

2 に答える 2

0
$(document).ready(function(){
    $("#mySupport").height("100px");
});
于 2013-01-02T17:55:40.590 に答える
0

iframe を外側のドキュメントと同じサイズに設定しようとしていると思います。もしそうなら:

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

jsfiddle

于 2013-01-02T17:58:08.823 に答える