El atributo de nombre de iframe HTML se utiliza para especificar una referencia para un elemento <Iframe> . El atributo de nombre también se usa como referencia a los elementos en un Javascript.
Sintaxis:
<iframe name="name">
Valores de atributos:
- nombre: Especifica el nombre para el elemento Iframe.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <style> body { text-align: center; } </style> </head> <body> <h1 style="color:green"> GeeksforGeeks </h1> <h2> HTML <Iframe>name Attribute </h2> <p>Content goes here</p> <iframe src="" height="200" width="200" name="myGeeks"> </iframe> <br> <a href="https://ide.geeksforgeeks.org/" target="myGeeks"> GeeksforGeeks </a> <p>Content goes here</p> </body> </html>
Producción:
Antes:
Después:
Navegadores compatibles: los navegadores compatibles con el atributo de nombre HTML <iframe> se enumeran a continuación:
- Google Chrome 1 y superior
- Borde 12 y superior
- explorador de Internet
- Firefox
- safari de manzana
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA