HTML DOM Embed 對象


Embed 對象

Embed 對象是 HTML5 中新增的。

Embed 對象代表一個 HTML <embed> 元素。

訪問 Embed 對象

你可以使用 getElementById() 來訪問 <embed> 元素:

var x = document.getElementById("myEmbed");

創建 Embed 對象

你可以使用 document.createElement() 來創建 <embed> 元素:

var x = document.createElement("myEmbed");

Embed 對象屬性

Property 描述
height 設置或者返回嵌入檔的高度(height屬性值)
src 設置或者返回 embed 元素的 src 屬性值(嵌入檔地址)
type 設置或者返回 embed 元素的 type 屬性值(嵌入檔類型)
width 設置或者返回嵌入檔的寬度(width屬性值)

標準屬性和事件

Embed 對象同樣支持標準 屬性事件


相關文章

HTML 參考手冊: HTML <embed> 標籤