目次
HTMLとの違い
例)クリックするとアラートがでるボタン
▼HTML
<html>
<script>
const buttonAlert = () => {
alert();
}
</script>
<body>
<button onclick="buttonAlert()">ボタン</button>
</body>
</html>
▼React
const App = () => {
const buttonAlert = () => {
alert();
}
return(
<button onClick={buttonAlert}>ボタン</button>
);
}
※=以降なみカッコで囲むとJavaScriptと認識されます
Reactのイベント処理の特徴
- camelCase
- 関数
コメント