iframe说明
它比frameset 灵活,可以嵌入到body标签中。可以嵌入到任何指定的位置上,做为网页整体的一部份。
一、iframe标签中的常用属性
属性名 | 单位 | 属性值 | 描述 |
---|---|---|---|
src | 指定引用的网页地址 | ||
name | 给frame取的名称 | ||
width | px,% | 像素,百份比 | 定义 iframe 的宽度。 |
height | px,% | 像素,百份比 | 定义 iframe 的高度。 |
srcdoc | 规定在 <iframe> 中显示的页面的 HTML 内容。 | ||
sendbox | "" allow-forms allow-same-origin allow-scripts allow-top-navigation | 启用一系列对 <iframe> 中内容的额外限制。 | |
frameborder | 0或1 | 规定是否显示框架周围的边框 | |
seamless | seamless | 规定 <iframe> 看上去像是包含文档的一部分。 | |
longdesc | url | 规定一个包含有关框架内容的长描述的页面。 | |
marginheight | px | 定义框架的上方和下方的边距。 | |
marginwidth | px | 定义框架的左侧和右侧的边距。 | |
noresize | noresize | 规定无法调整框架的大小。 | |
scrolling | yes/no/auto | 规定是否在框架中显示滚动条。 |