数字化技能提升教程,数字化时代生存宝典

数字化百科 / 词条 / Iframe

Iframe

查看全部词条命名空间:Main

IFRAME元素也就是文档中的文档,或者好像浮动的框架(FRAME)。frames 集合提供了对 IFRAME 内容的访问。请使用 frames 集合读写 IFRAME 内包含的元素。


语法

IFRAME 语法



具体示例

<html>
  <body>
  <iframe src="a.htm" frameborder=“0” scrolling="yes" height="100px" width="100px"></iframe>
  </body>
  </html>
  这个在页面上显示为一个嵌在页面的框架,该框架的大小为长100像素,宽100像素,有滚动条没有边框。
  <html>
  <body>
  <iframe name="res" style="display:none;" src="a.htm" frameborder=“0” scrolling="yes" height="100px" width="100px"></iframe>
  <form target="res">
  </form>
  用隐含的iframe提交数据,可以避免页面刷新。
  </body>
 </html>



相关条目



参考资源

参考资源1

参考资源2