目录

HTML DOM embed 对象


Embed 对象

Embed 对象表示 HTML <embed> 元素。

访问嵌入对象

您可以使用 getElementById() 访问 <embed> 元素:

示例

var x = document.getElementById("myEmbed");
亲自试一试 »

创建嵌入对象

您可以使用 document.createElement() 方法创建 <embed> 元素:

示例

var x = document.createElement("EMBED");
亲自试一试 »

嵌入对象属性

Property Description
height Sets or returns the value of the height attribute in an embed element
src Sets or returns the value of the src attribute in an embed element
type Sets or returns the value of the type attribute in an embed element
width Sets or returns the value of the width attribute in an embed element

标准属性和事件

Embed 对象还支持标准特性事件


相关页面

HTML 教程:HTML 插件

HTML 参考:HTML <嵌入> 标签