一个 <iframe> 最简单的用法:
<iframe src="./html.html" title="HTML Tutorial" height="100%" width="100%"></iframe>
src
属性指定要嵌入 iframe 的文档的地址。
属性 Attribute | |||||
---|---|---|---|---|---|
src | Yes | Yes | Yes | Yes | Yes |
<iframe src="URL">
值 Value | 描述 Description |
---|---|
URL | 指定要嵌入 iframe 的文档的 URL。可能的值: * 绝对 URL - 指向另一个网站(如 src="http://www.example.com/default.htm" )* 相对 URL - 指向网站内的文件(如 src="default.htm" ) |