Propiedad SVG Event.currentTarget

La propiedad SVG Event.currentTarget identifica el destino actual del evento, ya que el evento atraviesa el DOM.

Sintaxis:

var currentEventTarget = event.currentTarget

Valor devuelto: esta propiedad devuelve el valor de objeto del elemento de evento.

Ejemplo 1: 

<!DOCTYPE html>
<html>
  
<body>
    <svg viewBox="0 0 1000 1000" 
        xmlns="http://www.w3.org/2000/svg">
          
        <circle cx="50" cy="50" r="50" 
            onclick="check(event)" />
              
        <script type="text/javascript">
            function check(event) {
                console.log(event.currentTarget);
            }
        </script>
    </svg>
</body>
  
</html>

Producción:

Ejemplo 2: 

<!DOCTYPE html>
<html>
  
<body>
    <svg viewBox="0 0 1000 1000" 
        xmlns="http://www.w3.org/2000/svg">
          
        <text x="50" y="20" font-size="20px" 
            onclick="check(event)">
            GeeksForGeeks
        </text>
          
        <script type="text/javascript">
            function check(event) {
                console.log(event.currentTarget);
            }
        </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 *