LoginSignup
0
0

More than 3 years have passed since last update.

【React】関数コンポーネントのイベントハンドラに、引数とイベントオブジェクトを同時に渡す方法

Posted at

結論

以下で可能です。

function App() {
  function handleClick(suffix, e) {
    console.log('suffix', suffix);
    console.log('e', e);
  }

  return (
    <a href="#" onClick={handleClick.bind(this, 'a')}>
      React
    </a>
  );
}

bindメソッドならイベントオブジェクトが末尾に与えられます。関数コンポーネントなのでthis.handleClick.bind()ではなくhandleClick.bind()にする必要があります。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0