Propiedad SVG Event.returnValue – Part 1

La propiedad SVG Event.returnValue indica si la acción predeterminada para este evento se ha impedido o no.

Sintaxis:

var bool = event.returnValue

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

Ejemplo 1: En este ejemplo, usaremos el evento onclick para el elemento circular SVG .

HTML

<!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) {
                document.write(
                    "This Event is returnValue : ",
                    event.returnValue);
            }
        </script>
    </svg>
</body>
  
</html>

Producción:

Ejemplo 2: En este ejemplo, usaremos el evento onclick para el elemento de texto SVG .

HTML

<!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) {
                document.write(
                    "This Event is returnValue : ",
                    event.returnValue);
            }
        </script>
    </svg>
</body>
  
</html>

Producción:

Ejemplo 3: En este ejemplo, usaremos el evento onmouseover para el elemento circular SVG .

HTML

<!DOCTYPE html>
<html>
  
<body>
    <svg viewBox="0 0 1000 1000" 
        xmlns="http://www.w3.org/2000/svg">
          
        <circle cx="50" cy="50" r="50" 
            onmouseover="check(event)" />
          
        <script type="text/javascript">
            function check(event) {
                document.write(
                    "This Event is returnValue : ",
                    event.returnValue);
            }
        </script>
    </svg>
</body>
  
</html>

Producción:

Ejemplo 4: En este ejemplo, usaremos el evento onmouseover para el elemento de texto SVG .

HTML

<!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"
            onmouseover="check(event)">
            GeeksForGeeks
        </text>
          
        <script type="text/javascript">
            function check(event) {
                document.write(
                    "This Event is returnValue : ",
                    event.returnValue);
            }
        </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 *