网站嵌入开发


有时我们会碰到需要把另一个网站嵌入到自己网站中的需求,怎么处理呢?用iframe。


正文

有时我们会碰到需要把另一个网站嵌入到自己网站中的需求,怎么处理呢?用iframe。

举例:

<div class="content-title">
    <h3>百度</h3>
</div>
<div style="min-height: 800px;">
    <iframe id="my_iframe" src="https://www.baidu.com/" frameborder=0 width=100% height="100%" marginheight=0 marginwidth=0>
    <\iframe>
</div>

效果:






参考资料

http://www.runoob.com/html/html-iframes.html

http://www.w3school.com.cn/tags/tag_frame.asp

http://www.w3school.com.cn/tags/tag_frameset.asp

http://www.w3school.com.cn/tags/tag_iframe.asp

https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/frame


返回