📌  相关文章
📜  如何指定要嵌入 HTML5 中 iframe 元素的文档地址?

📅  最后修改于: 2021-10-31 05:19:14             🧑  作者: Mango

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

       

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
                       

输出: