-2

ブラウザで使用可能な高さに応じて iframe の高さを動的に修正するには、Javascript が必要ですか?

4

1 に答える 1

0

これはあなたが探しているものですか?

$(function(){    
    //sets the height of the iframe to the height of the browser viewport
    $("#idOfIframe").height($(window).height());
}
于 2012-11-20T16:52:16.533 に答える