目录

HTML DOM 文档 embeds

示例

文档中 <embed> 元素的数量:

let num = document.embeds.length;
亲自试一试 »

描述

这个embeds属性返回文档中所有 <embed> 元素的集合。

这个embeds属性是只读的。

警告

大多数浏览器不再支持嵌入式 Applet 或插件。

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

Shockwave Flash 在现代浏览器中也已被关闭。

建议

要嵌入图片,请使用<img>标签。

要嵌入 HTML,请使用<iframe>标签。

要嵌入视频或音频,请使用<video>或者<audio>标签。

也可以看看:

HTML DOM 嵌入对象

HTML <embed> 标签



语法

document.embeds

特性

Property Description
length The number of <embed> elements in the collection.

方法

Method Description
[index] Returns the element with the specified index (starts at 0).
Returns null if the index is out of range.
item(index) Returns the element with the specified index (starts at 0).
Returns null if the index is out of range.
namedItem(id) Returns the element with the specified id.
Returns null if the id does not exist.

返回值

类型 描述
节点列表 HTML 集合
文档中的所有 <embed> 元素。
按照源代码中的显示顺序进行排序。

浏览器支持

document.embeds是 DOM Level 3 (2004) 功能。

所有现代浏览器都完全支持它:

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes 11