Το αντικείμενο Embed του DOM HTML
- Προηγούμενη σελίδα <em>
- Επόμενη σελίδα <fieldset>
Embed Object
The Embed object is a new object in HTML5.
The Embed object represents the HTML <embed> element.
Accessing the Embed Object
You can access the <embed> element by using getElementById():
var x = document.getElementById("myEmbed");
Creating an Embed Object
You can create an <embed> element by using the document.createElement() method:
var x = document.createElement("EMBED");
Embed Object Properties
Παράμετροι | Description |
---|---|
height | Set or return the value of the height attribute of the embed element. |
src | Set or return the value of the src attribute of the embed element. |
type | Set or return the value of the type attribute of the embed element. |
breadth | Ρύθμιση ή επιστροφή της τιμής της παραμέτρου width του στοιχείου embed. |
Standard properties και συμβάντα
Υποστήριξη των standard από το όντος EmbedΠαράμετροικαιΣυνέδρια.
- Προηγούμενη σελίδα <em>
- Επόμενη σελίδα <fieldset>