From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/web/html/element/embed/index.html | 106 ++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 files/zh-cn/web/html/element/embed/index.html (limited to 'files/zh-cn/web/html/element/embed') diff --git a/files/zh-cn/web/html/element/embed/index.html b/files/zh-cn/web/html/element/embed/index.html new file mode 100644 index 0000000000..6733e70d96 --- /dev/null +++ b/files/zh-cn/web/html/element/embed/index.html @@ -0,0 +1,106 @@ +--- +title: :外部内容嵌入元素 +slug: Web/HTML/Element/embed +tags: + - HTML + - HTML5 + - Web + - 嵌入 +translation_of: Web/HTML/Element/embed +--- +

HTML <embed> 元素将外部内容嵌入文档中的指定位置。此内容由外部应用程序或其他交互式内容源(如浏览器插件)提供。

+ +

{{Note("这篇文档仅定义该元素在 HTML5 中定义的部分,不包含该元素之前的声明内容和非标准的实现。")}}

+ +

请记住,大多数现代浏览器已经弃用并取消了对浏览器插件的支持,所以如果您希望您的网站可以在普通用户的浏览器上运行,那么依靠 <embed> 通常是不明智的。

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Content categoriesFlow content, phrasing content, embedded content, interactive content, palpable content.
Permitted contentNone, it is an {{Glossary("empty element")}}.
Tag omissionMust have a start tag, and must not have an end tag.
Permitted parentsAny element that accepts embedded content.
Permitted ARIA roles{{ARIARole("application")}}, {{ARIARole("document")}}, {{ARIARole("img")}}, {{ARIARole("presentation")}}
DOM interface{{domxref("HTMLEmbedElement")}}
+ +

属性

+ +

这个元素的属性包括 全局属性

+ +
+
{{htmlattrdef("height")}}
+
资源显示的高度,in CSS pixels.  -- (Absolute values only.  NO percentages)
+
{{htmlattrdef("src")}}
+
被嵌套的资源的URL。
+
{{htmlattrdef("type")}}
+
用于选择插件实例化的 MIME 类型。
+
{{htmlattrdef("width")}}
+
资源显示的宽度,in CSS pixels.  -- (Absolute values only.  NO percentages)
+
+ +

例子

+ +
<embed type="video/quicktime" src="movie.mov" width="640" height="480">
+
+ +

规范

+ + + + + + + + + + + + + + + + + + + + + +
规范状态备注
{{SpecName('HTML WHATWG', 'embedded-content.html#the-embed-element', '<embed>')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'embedded-content-0.html#the-embed-element', '<embed>')}}{{Spec2('HTML5 W3C')}} 
+ +

浏览器兼容性

+ +
+

注意: 不同浏览器之间显示有差异。Blink 内核浏览器(Chrome,Opera)会显示 HTML 资源的内容,但 Firefox 会显示一条通知消息,指出内容需要一个插件(见 {{Bug("730768")}})。建议使用 <object> 或 <iframe> 元素。

+
+ + + +

{{Compat("html.elements.embed")}}

+ +

参见

+ + + +

{{ HTMLRef }}

-- cgit v1.2.3-54-g00ecf