HTML <embed> 标签


示例

嵌入图片:

<embed type="image/jpg" src="pic_trulli.jpg" width="300" height="200">
亲自试一试 »

示例

嵌入的 HTML 页面:

<embed type="text/html" src="snippet.html" width="500" height="200">
亲自试一试 »

示例

嵌入视频:

<embed type="video/webm" src="video.mp4" width="400" height="300">
亲自试一试 »

定义和用法

这个<embed>标签定义外部资源的容器,例如网页、图片、媒体播放器或插件应用程序。

警告

大多数浏览器不再支持 Java Applet 和插件。

任何浏览器都不再支持 ActiveX 控件。

现代浏览器中对 Shockwave Flash 的支持也已关闭。

建议

要显示图片,最好使用<img>标签。

要显示 HTML,最好使用<iframe>标签。

要显示视频或音频,最好使用<video><audio>标签。



浏览器支持

Element
<embed> Yes Yes Yes Yes Yes

属性

Attribute Value Description
height pixels Specifies the height of the embedded content
src URL Specifies the address of the external file to embed
type media_type Specifies the media type of the embedded content
width pixels Specifies the width of the embedded content

全局属性

这个<embed>标签还支持HTML 中的全局属性


事件属性

这个<embed>标签还支持HTML 中的事件属性


相关页面

HTML DOM 参考:嵌入对象


默认 CSS 设置

大多数浏览器都会显示<embed>具有以下默认值的元素:

embed:focus {
  outline: none;
}