就像 HTML DOM 事件一样,React 可以根据用户事件执行操作。
React 具有与 HTML 相同的事件:单击、更改、鼠标悬停等。
React 事件以驼峰语法编写:
onClick
代替onclick
。
React 事件处理程序写在大括号内:
onClick={shoot}
代替onClick="shoot()"
。
<button onClick={shoot}>Take the Shot!</button>
<button onclick="shoot()">Take the Shot!</button>
放在shoot
里面的函数Football
成分:
function Football() {
const shoot = () => {
alert("Great Shot!");
}
return (
<button onClick={shoot}>Take the shot!</button>
);
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<Football />);
要将参数传递给事件处理程序,请使用箭头函数。
将 "Goal!" 作为参数发送到shoot
函数,使用箭头函数:
function Football() {
const shoot = (a) => {
alert(a);
}
return (
<button onClick={() => shoot("Goal!")}>Take the shot!</button>
);
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<Football />);
事件处理程序可以访问触发该函数的 React 事件。
在我们的示例中,事件是"click" 事件。
箭头功能:手动发送事件对象:
function Football() {
const shoot = (a, b) => {
alert(b.type);
/*
'b' represents the React event that triggered the function,
in this case the 'click' event
*/
}
return (
<button onClick={(event) => shoot("Goal!", event)}>Take the shot!</button>
);
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<Football />);
当我们查看时这会派上用场形式在后面的章节中。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!