We want to hear from you!Take our 2021 Community Survey!
This site is no longer updated.Go to react.dev

SyntheticEvent

These docs are old and won’t be updated. Go to react.dev for the new React docs.

These new documentation pages teach modern React and include live examples:

Questa guida di riferimento documenta il contenitore SyntheticEvent che fa parte del sistema di eventi di React. Consulta la guida Gestione degli Eventi per saperne di più.

Panoramica

I tuoi event handlers riceveranno istanze di SyntheticEvent, un contenitore cross-browser intorno all’evento nativo del browser. Hanno entrambi la stessa interfaccia, compresi stopPropagation() e preventDefault(), l’eccezione sta nel fatto che gli eventi funzionano in modo identico in tutti i browser.

Se constati di avere bisogno dell’evento del browser sottostante per qualche motivo, puoi ottenerlo semplicemente usando l’attributo nativeEvent. Gli eventi sintetici hanno una forma differente rispetto agli eventi nativi del browser. Per esempio: in onMouseLeave event.nativeEvent punta all’evento mouseout. La mappatura specifica non fa parte delle API pubbliche e per questo é soggetta a cambiamenti inaspettati. Ogni SyntheticEvent oggetto ha i seguenti attributi:

boolean bubbles
boolean cancelable
DOMEventTarget currentTarget
boolean defaultPrevented
number eventPhase
boolean isTrusted
DOMEvent nativeEvent
void preventDefault()
boolean isDefaultPrevented()
void stopPropagation()
boolean isPropagationStopped()
void persist()
DOMEventTarget target
number timeStamp
string type

Nota:

A partire da v17, e.persist() non fa più nulla in quanto SyntheticEvent non è più pooled.

Nota:

A partire da v0.14, ritornare false da un event handler non fermerà più la propagazione dell’evento. In modo più appropriato, è invece necessario invocare e.stopPropagation() o e.preventDefault().

Eventi Supportati

React normalizza gli eventi per far sì che abbiano proprietà coerenti in tutti browser.

Gli event handlers di seguito vengono scatenati da un evento nella fase di bubbling. Per registrare un event handler per la fase di capture, aggiungi Capture al nome dell’evento; per esempio, invece di usare onClick, useresti onClickCapture per gestire l’evento click nella fase di capture.


Riferimento

Eventi degli Appunti

Nomi degli eventi:

onCopy onCut onPaste

Proprietà:

DOMDataTransfer clipboardData

Eventi della Composizione

Nomi degli eventi:

onCompositionEnd onCompositionStart onCompositionUpdate

Proprietà:

string data

Eventi della Tastiera

Nomi degli eventi:

onKeyDown onKeyPress onKeyUp

Proprietà:

boolean altKey
number charCode
boolean ctrlKey
boolean getModifierState(key)
string key
number keyCode
string locale
number location
boolean metaKey
boolean repeat
boolean shiftKey
number which

La proprietà key può accettare uno qualsiasi dei valori documentati nelle specifiche degli Eventi del DOM Livello 3.


Eventi di Focus

Nomi degli eventi:

onFocus onBlur

Questi eventi di focus funzionano con tutti elementi nel React DOM, non solo elementi form.

Proprietà:

DOMEventTarget relatedTarget

onFocus

The onFocus event is called when the element (or some element inside of it) receives focus. For example, it’s called when the user clicks on a text input.

function Example() {
  return (
    <input
      onFocus={(e) => {
        console.log('Focused on input');
      }}
      placeholder="onFocus is triggered when you click this input."
    />
  )
}

onBlur

The onBlur event handler is called when focus has left the element (or left some element inside of it). For example, it’s called when the user clicks outside of a focused text input.

function Example() {
  return (
    <input
      onBlur={(e) => {
        console.log('Triggered because this input lost focus');
      }}
      placeholder="onBlur is triggered when you click this input and then you click outside of it."
    />
  )
}

Detecting Focus Entering and Leaving

You can use the currentTarget and relatedTarget to differentiate if the focusing or blurring events originated from outside of the parent element. Here is a demo you can copy and paste that shows how to detect focusing a child, focusing the element itself, and focus entering or leaving the whole subtree.

function Example() {
  return (
    <div
      tabIndex={1}
      onFocus={(e) => {
        if (e.currentTarget === e.target) {
          console.log('focused self');
        } else {
          console.log('focused child', e.target);
        }
        if (!e.currentTarget.contains(e.relatedTarget)) {
          // Not triggered when swapping focus between children
          console.log('focus entered self');
        }
      }}
      onBlur