轻松上手,快乐学习!

HTML DOM Embed 对象


Embed 对象

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

访问 Embed 对象

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

实例

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

创建 Embed 对象

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

实例

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

Embed 对象属性

属性 描述
height 设置或返回 embed 元素中 height 属性的值。
src 设置或返回 embed 元素中 src 属性的值。
type 设置或返回 embed 元素中 type 属性的值。
width 设置或返回 embed 元素中 width 属性的值。

标准属性和事件

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


相关页面

HTML 教程: HTML Plug-ins

HTML 参考手册: HTML <embed> 标签