Esempio
Scopri se un evento specifico è attendibile:
function myFunction(event) {
if ("isTrusted" in event)
{
if (event.isTrusted) {
alert ("The " + event.type + " event is trusted.");
} else {
alert ("The " + event.type + " event is not trusted.");
}
} else {
alert ("The isTrusted property is not supported by your browser");
}
}
Prova tu stesso " Definizione e l'utilizzo
La proprietà evento IsTrusted restituisce un valore booleano che indica se l'evento è attendibile o meno.
Nota: In Chrome, Firefox e Opera, l'evento è attendibile se viene richiamato dall'utente, e non attendibile se viene invocato da uno script. In IE, tutti gli eventi sono fidati ad eccezione di quelli che vengono creati con l' createEvent() metodo.
Supporto browser
I numeri nella tabella indicano la prima versione del browser che supporta pienamente la proprietà.
Proprietà | |||||
---|---|---|---|---|---|
isTrusted | 46.0 | 9.0 | sì | Non supportato | 33,0 |
Sintassi
event .isTrusted
Dettagli tecnici
Valore di ritorno: | Un valore booleano, che indica se l'evento è attendibile o meno Valori possibili:
|
---|---|
DOM Versione: | Livello 3 DOM Eventi |
<Oggetto evento