欢迎访问服务器技术网-www.fuwuqijishu.com

IFrame height 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 23次浏览 0个评论 扫描二维码
文章目录[隐藏]

IFrame height 属性

Frame/IFrame 对象


定义和用法

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>菜鸟教程(runoob.com)</title>
<script>
function changeSize(){
    document.getElementById(“myframe”).height=”300″;
    document.getElementById(“myframe”).width=”300″;
}
</script>
</head>
<body>
    
<iframe loading=”lazy” id=”myframe” src=”http://www.runoob.com&#8221; height=”200″ width=”200″>
<p>你的浏览器不支持iframes。</p>
</iframe>
<br><br>
<input type=”button” onclick=”changeSize()” value=”修改大小”>

</body>
</html>


Frame/IFrame 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2215.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900