小码哥的IT人生

HTML DOM IFrame 对象

JavaScript基础 2022-05-13 16:19:24小码哥的IT人生shichen

HTML DOM IFrame 对象

IFrame 对象

IFrame 对象代表 HTML <iframe> 元素。

访问 IFrame 对象

您可使用 getElementById() 来访问 <iframe> 元素:

示例代码:

var x = document.getElementById("myFrame");

完整实例:

<!DOCTYPE html>
<html>
<body>
<h3>如何访问 IFRAME 元素的演示</h3>
<iframe id="myFrame" src="/index.html"></iframe>
<p>单击按钮以获取 iframe 的 URL。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("myFrame").src;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

提示:您还可以使用 window.frames 属性访问 <iframe> 元素。

创建 IFrame 对象

您可使用 document.createElement() 方法来创建 <iframe> 元素:

示例代码:

var x = document.createElement("IFRAME");

完整实例:

<!DOCTYPE html>
<html>
<body>
<p>单击该按钮以在框架中创建带有 phpcodeweb.com 的 IFRAME 元素。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
  var x = document.createElement("IFRAME");
  x.setAttribute("src", "https://www.phpcodeweb.com");
  document.body.appendChild(x);
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

IFrame 对象属性

属性 描述
align HTML5 中不支持。请改用 style.cssFloat。
contentDocument 返回 iframe 生成的 document 对象。
contentWindow 返回 iframe 生成的 window 对象。
frameBorder

HTML5 中不支持。请改用 style.border。

设置或返回 iframe 中 frameborder 属性的值。

height 设置或返回 iframe 中 height 属性的值。
longDesc

Not supported in HTML5.

设置或返回 iframe 中 longdesc 属性的值。

marginHeight

HTML5 中不支持。请改用 style.margin。

设置或返回 iframe 中 marginheight 属性的值。

marginWidth

HTML5 中不支持。请改用 style.margin。

设置或返回 iframe 中 marginwidth 属性的值。

name 设置或返回 iframe 中 name 属性的值。
sandbox 设置或返回 iframe 中 sandbox 属性的值。
scrolling

Not supported in HTML5.

设置或返回 iframe 中 scrolling 属性的值。

seamless 设置或返回 iframe 是否应该看起来像是包含文档的一部分(无边框或滚动条)。
src 设置或返回 iframe 中 src 属性的值。
srcdoc 设置或返回 iframe 中 srcdoc 属性的值。
width 设置或返回 iframe 中 width 属性的值。

标准属性和事件

IFrame 对象支持标准属性事件

相关页面

HTML 参考手册:HTML <iframe> 标签

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024