iframe框架

在html中,我们可以用iframe标签实现一个内嵌框架。即在当前页面中再嵌入另一个网页。
基本格式为

<iframe src="链接地址" width="数值" height="数值"></iframe>

例:
嵌入一个页面:

<body>
<iframe src="http://www.baidu.com" width="200" height="150" name="ai"></iframe>
</body>

效果如下:
在这里插入图片描述
嵌入多个页面:

<body>
<iframe src="http://www.baidu.com" width="200" height="150" name="ai"></iframe>
<iframe src="http://www.sina.com" width="200" height="150" name="ai"></iframe>
</body>

效果如下:
在这里插入图片描述

超链接跳转到本页面下iframe中的元素

<body>
<iframe name="ai" src="http://www.baidu.com" width="200" height="150" name="ai"></iframe>
<a href="http://www.sina.com" target="ai">新浪</a>
</body>

效果如下:
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_43694639/article/details/84403288