HTML DOM IFrame height属性用于设置或返回Iframe元素的height属性的值。 height属性用于指定iframe元素的宽度。
用法:
- 它返回height属性。
iframeObject.height
- 用于设置height属性。
iframeObject.height = pixels
属性值:
- pixels:它以像素为单位指定iframe元素的高度
返回值它返回一个字符串值,该字符串值表示以像素为单位的Iframe的高度。
示例1:本示例说明了如何返回Iframe height属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM iframe height Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksforGeeks</h1>
<h2>HTML DOM iframe height Property</h2>
<iframe src=
"https://ide.geeksforgeeks.org/index.php"
id="GFG"
height="200"
width="400">
</iframe>
<br>
<br>
<button onclick="Geeks()">Submit</button>
<p id="sudo" style="font-size:20px"></p>
<script>
function Geeks() {
var x =
document.getElementById("GFG").height;
document.getElementById("sudo").innerHTML = x;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例2:本示例说明了如何设置Iframe height属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM iframe height Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksforGeeks</h1>
<h2>HTML DOM iframe height Property</h2>
<iframe src=
"https://ide.geeksforgeeks.org/index.php"
id="GFG"
height="200"
width="400">
</iframe>
<br>
<br>
<button onclick="Geeks()">Submit</button>
<p id="sudo" style="font-size:20px"></p>
<script>
function Geeks() {
var x =
document.getElementById("GFG").height =
"400";
document.getElementById("sudo").innerHTML = x;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了HTML DOM IFrame height属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- 苹果Safari
- Opera
相关用法
- HTML <iframe> height属性用法及代码示例
- HTML IFrame src用法及代码示例
- HTML IFrame name用法及代码示例
- HTML IFrame contentDocument用法及代码示例
- HTML IFrame srcdoc用法及代码示例
- HTML IFrame width用法及代码示例
- HTML IFrame sandbox用法及代码示例
- HTML IFrame contentWindow用法及代码示例
- HTML Style height用法及代码示例
- HTML embed height用法及代码示例
- HTML Screen height用法及代码示例
- HTML Video height用法及代码示例
- HTML Object Height用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM IFrame height Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。