IFrame height 属性
height 属性可设置或者返回 iframe 元素中 height 属性的值。
height 属性指定了 iframe 的高度(以像素或百分比为单位)。
语法
iframeObject.height=value
height 属性可以是以下值:
值 | 描述 |
---|---|
pixels | height 属性单位可以是像素 (如 "100px" 或者 "100") |
% | height 属性单位可以是百分比 (如"20%") |
浏览器支持
所有主要浏览器都支持 height 属性。
在线实例
实例
改变 iframe 的高度与宽度:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>牛客教程(nowcoder.com)</title> <script> function changeSize(){ document.getElementById("myframe").height="300"; document.getElementById("myframe").width="300"; } </script> </head> <body> <iframe id="myframe" src="http://www.nowcoder.com" height="200" width="200"> <p>你的浏览器不支持iframes。</p> </iframe> <br><br> <input type="button" onclick="changeSize()" value="修改大小"> </body> </html>