HTML | Propiedad de evento isTrusted

La propiedad de evento isTrusted se utiliza para comprobar si un evento es de confianza o no.

Valor de retorno: devuelve True si se confía en un evento; de lo contrario, devuelve false .

Sintaxis:

event.isTrusted

El siguiente programa ilustra la propiedad del evento isTrusted:

Ejemplo: Para saber si un evento específico es confiable o no.

<!DOCTYPE html>
<html>
  
<head>
    <title>isTrusted Event Property in HTML</title>
    <style>
        h1 {
            color: green;
        }
          
        h2 {
            font-family: Impact;
        }
          
        body {
            text-align: center;
        }
    </style>
</head>
  
<body onclick="MyEvent(event)">
  
    <h1>GeeksforGeeks</h1>
    <h2>isTrusted Event Property</h2>
  
    <p>Double Click the "Check Event"
       button to check whether the event 
       is trusted or not.</p>
  
    <button ondblclick="MyEvent(event)">
      Try it
    </button>
  
    <script>
        // Check whether the event is trusted or not.
        function MyEvent(event) {
            if ("isTrusted" in event) {
                if (event.isTrusted) {
                    alert("The " + event.type + 
                    " is a trusted event.");
                } else {
                    alert("The " + event.type + 
                    " is not a trusted event.");
                }
            } else {
                alert("Your browser does not support "
                       +"the isTrusted property");
            }
        }
    </script>
  
</body>
  
</html>

Salida:
Antes de hacer clic en el botón:

Después de hacer clic en el botón:

Navegadores compatibles:

  • Ópera
  • explorador de Internet
  • Google Chrome
  • Firefox

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 *