HTML <iframe> src属性

❮HTML<iframe>タグ

最も単純な使用法の<iframe>:

<iframe src="/default.asp"></iframe>

定義と使用法

このsrc属性は、iframeに埋め込むドキュメントのアドレスを指定します。


ブラウザのサポート

Attribute
src Yes Yes Yes Yes Yes

構文

<iframe src="URL">

属性値

Value Description
URL Specifies the URL of the document to embed in the iframe.

Possible values:

  • An absolute URL - points to another web site (like src="http://www.example.com/default.htm")
  • A relative URL - points to a file within a web site (like src="default.htm")

❮HTML<iframe>タグ