Propiedad SVG Element.id

La propiedad SVG Element.id

Sintaxis:

var idStr = element.id; // Get the id

Valor devuelto: Esta propiedad devuelve el id

Ejemplo 1: 

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg width="350" height="350" 
        xmlns="http://www.w3.org/2000/svg">
        <a href="https://www.geeksforgeeks.org" id="gfg">
            <circle cx='100' cy='100' r="80"></circle>
        </a>
        <script>
            var g = document.getElementById('gfg');
            console.log(g.id)
        </script>
    </svg>
</body> 
  
</html>

Producción:

Ejemplo 2: 

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg width="350" height="100" 
        xmlns="http://www.w3.org/2000/svg">
        <a href="https://www.geeksforgeeks.org" id="gfg">
            <text x='100' y='50' font-size="50px">GfG</text>
        </a>
        <script>
            var g = document.getElementById('gfg');
            console.log(g.id)
        </script>
    </svg>
</body> 
  
</html>

Producción:

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *