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.
我需要 Javascript 根据浏览器中的可用高度动态修复 iframe 高度吗?
这是你想要的?
$(function(){ //sets the height of the iframe to the height of the browser viewport $("#idOfIframe").height($(window).height()); }