小码哥的IT人生

HTML <iframe> 标签的 src 属性 详解

HTML基础 2022-06-02 12:01:38小码哥的IT人生shichen

HTML <iframe> 标签的 src 属性

实例

带有滚动条的 iframe:

<iframe src="/index.html">
<p>Your browser does not support iframes.</p>
</iframe>

 

完整实例【亲自试一试】:

<html>
<body>
<iframe src ="/index.html">
  <p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

定义和用法

src 属性规定在 iframe 中显示的文档的 URL。

语法

<iframe src="value">

属性值

描述
URL

规定显示在 iframe 中的文档的地址。

可能的值:

  • 绝对 URL - 指向其他站点(比如 src="www.example.com/index.html")
  • 相对 URL - 指向站点内的文件(比如 src="index.html")

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024