1. 在 HTML 中事件名必须小写:
<button onclick='activateLasers()'>
而在 React 中它遵循 camelCase(驼峰) 惯例:
<button onClick={activateLasers}>
2. 在 HTML 中你可以返回 false 以阻止默认的行为:
<a href='#' onclick='console.log("The link was clicked."); return false;' />
而在 React 中你必须地明确地调用 preventDefault( ):
function handleClick(event) {
event.preventDefault()
console.log('The link was clicked.')
}