Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
iframe があり、実行時にコンテンツの高さに応じて縮小および拡大する必要があります
<iframe src='demo-frame.php' >Your browser doesn't support iFrames.</iframe>
助けはありますか?
たぶん、いくつかのjQueryで次のことを試してください...
$('#iframeID').load(function () { $(this).height($(this).contents().height()); $(this).width($(this).contents().width()); });