HTML | Propiedad de evento cancelable – Part 1

La propiedad de evento cancelable se utiliza para devolver un valor booleano que indica si un evento es un evento cancelable o no. Un evento es un evento cancelable si es posible evitar la acción predeterminada del evento. 

Valor devuelto: la propiedad del evento cancelable devuelve verdadero si el evento es cancelable, de lo contrario, devuelve falso

Sintaxis:

event.cancelable

El siguiente programa ilustra la propiedad del evento cancelable: 

Ejemplo: Averiguar si un evento específico es cancelable o no. 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>cancelable Event Property in HTML</title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2>cancelable Event Property</h2>
 
    <p>To check if the onclick event is
       a cancelable event or not,
       double click the "Check Event" button .
    </p>
 
    <button ondblclick="MyEvent(event)">
        Check Event
    </button>
 
    <p id="test"></p>
 
    <script>
        function MyEvent(event) {
            <!-- Check whether the "event" is cancelable or not. -->
            var gfg = event.cancelable;
 
            document.getElementById("test").innerHTML = gfg;
        }
    </script>
 
</body>
 
</html>      

Producción: 

Antes de hacer clic en el botón: 

After double clicking the button (Note that there is text “true” below the button): 

Navegadores compatibles:

  • Ópera 12.1 y superior
  • Internet Explorer 9 y superior
  • Google Chrome 1 y superior
  • Borde 12 y superior
  • Firefox 1.5 y superior
  • Apple Safari 1 y superior

Publicación traducida automáticamente

Artículo escrito por Shubrodeep Banerjee 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 *