IFrame width 属性
Iframe 对象的 width 属性可设置或者返回 iframe 元素中 width 属性的值
width 属性指定了 iframe 的宽度
语法
iframeObject.width= pixels | %
值说明
值 | 描述 |
---|---|
pixels | 以像素作为单位 (如"100px" 或者 "100") |
% | 以百分比作为宽度 (如 "20%") |
浏览器支持
所有主要浏览器都支持 width 属性
范例
改变 iframe 的高度与宽度
<script> function changeSize(){ document.getElementById("myframe").height="300"; document.getElementById("myframe").width="300"; } </script> <iframe id="myframe" src="/static/media/html/demo_iframe.html" height="200" width="200"> <p>你的浏览器不支持iframes。</p> </iframe> <br><br> <input type="button" onclick="changeSize()" value="修改大小">