Languages
[Edit]
DE

React - onClick Ereignishandler - Ein Beispiel

3 points
Created by:
Nikki
10520

In diesem Artikel wird gezeigt, wie man das onClick Ereignishandler in React verwenden kann. 

Schnelle Lösung:

<button onClick={handleClick}>Klick mich!</button>

Praktisches Beispiel

Wenn man im folgenden Beispiel auf die SchaltflĂ€che klicken, ruft man die Funktion handleClick, die der Eigenschaft onClick zugewiesen wurde - sie ist fĂŒr das Ereignishandler verantwortlich.

LauffÀhiges Beispiel:

// ONLINE-RUNNER:browser;
//import React from 'react';

const handleClick = () => {
  console.log('handleClick wurde erkannt');
};

const App = () => {
  return (
    <div className="App">
      <button onClick={handleClick}>Klicke mich!</button>
    </div>
  );
};

const root = document.querySelector('#root');
ReactDOM.render(<App />, root );
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

ReactJS (DE)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

â€ïžđŸ’» 🙂

Join