La propiedad de altura de incrustación DOM en HTML se usa para establecer o devolver el valor del atributo de tipo en un elemento incrustado. El atributo de tipo especifica el tipo MIME del contenido incrustado.
Sintaxis:
- Devuelve la propiedad de tipo:
embedObject.type
- Establezca la propiedad de tipo:
embedObject.type = MIME_type
Valores de propiedad:
- MIME_type: contiene un solo valor de tipo MIME que se utiliza para especificar la URL de destino.
Valores devueltos: Devuelve un valor de string que representa el tipo MIME del Documento vinculado.
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title>HTML DOM Embed type Property</title> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <embed id="embedID" type="application/x-shockwave-flash" src="https://ide.geeksforgeeks.org"> <br> <button onclick="GFGfun()"> Try it </button> <p id="pid"></p> <script> function GFGfun() { var idtype = document.getElementById("embedID").type; document.getElementById("pid").innerHTML = idtype; } </script> </center> </body> </html>
Producción:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con la propiedad de tipo de inserción DOM se enumeran a continuación:
- Google Chrome 1 y superior
- Edge 79 y superior
- Internet Explorer no es compatible
- Firefox 1 y superior
- Ópera 12.1 y superior
- Safari 4 y superior
Publicación traducida automáticamente
Artículo escrito por Vijay Sirra y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA