Evento SVG.propiedad cancelable

La propiedad SVG Event.cancelable indica si el evento se puede cancelar.

Sintaxis:

bool = event.cancelable

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

Ejemplo 1: En el siguiente ejemplo, usaremos el evento onclick .

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 cancelable : ",
                    event.cancelable);
            }
        </script>
    </svg>
</body>
  
</html>

Producción:

Ejemplo 2: En el siguiente ejemplo, estamos usando el evento onclick .

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 cancelable : ",
                    event.cancelable);
            }
        </script>
    </svg>
</body>
  
</html>

Producción:

Ejemplo 3: En el siguiente ejemplo, estamos usando el evento onmouseover .

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 cancelable : ", 
                    event.cancelable);
            }
        </script>
    </svg>
</body>
  
</html>

Producción:

Ejemplo 4: En este ejemplo, usaremos el evento onmouseover .

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 cancelable : ",
                    event.cancelable);
            }
        </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 *