HTML 中的iframe代表内联框架。网页中的“iframe”元素有助于使用 Web 浏览器在某个特定区域或区域内显示另一个网页文档。内嵌框架用于在当前 HTML 网页中嵌入另一个具有不同属性的网页,用于加载、设置高度或宽度、允许全屏模式、src 等等。
方法:任务是定义嵌入在iframe元素中的文档的地址。只需使用文档中iframe标签的 src属性即可完成该任务。此属性用于指定嵌入到
句法:
示例:下面的代码说明了
HTML
GeeksforGeeks
Specify the address of the document to embed in the HTML iframe element
This is the normal webpage content
HTML
GeeksforGeeks
Specify the address of the document to embed in the HTML iframe element
This is the normal webpage content
Another content
no content, no scroll in below iframe
输出:
示例 2:下面的代码使用 iframe 元素,没有使用相应的iframe属性的滚动条和框架边框。属性是“ scrolling=no”和“ frameborder=0 ”,如示例中所示。
HTML
GeeksforGeeks
Specify the address of the document to embed in the HTML iframe element
This is the normal webpage content
Another content
no content, no scroll in below iframe
输出: