定義
創建內嵌漂浮框架。
Creates inline floating frames.
注釋
IFRAME 元素的作用相當於在一個文檔中嵌入另一個文檔,或者像一個漂浮的 FRAME。
此元素在 Internet Explorer 4.0 及以上版本的 HTML 和腳本中可用。
此元素是一個塊元素。
此元素需要關閉標簽。
The IFRAME element functions as a document within a document, or like a floating FRAME.
This element is available in HTML and script as of Internet Explorer 4.0.
This element is a block element.
This element requires a closing tag.
示例代碼
<html> <body> <p>這個 HTML 文檔中使用 IFRAME 來顯示另外一個叫Frame_a.html 的網頁。</p> <iframe src="../asdocs/html_tutorials/Frame_a.html"></iframe> </body> </html>