HTML DOM Embed ตัวแทน
- หน้าก่อนหน้า <em>
- หน้าต่อไป <fieldset>
Embed 对象
Embed 对象是 HTML5 中的新对象。
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 | ตั้งค่าหรือกลับค่าคุณสมบัติ width ขององค์ประกอบ embed |
- หน้าก่อนหน้า <em>
- หน้าต่อไป <fieldset>