ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
1. 在 HTML 中事件名必须小写: ~~~html <button onclick='activateLasers()'> ~~~ 而在 React 中它遵循*camelCase*(驼峰) 惯例: ~~~js <button onClick={activateLasers}> ~~~ 2. 在 HTML 中你可以返回`false`以阻止默认的行为: ~~~html <a href='#' onclick='console.log("The link was clicked."); return false;' /> ~~~ 而在 React 中你必须地明确地调用`preventDefault()`: ~~~js function handleClick(event) { event.preventDefault() console.log('The link was clicked.') } ~~~ ## 参考 [react面试题](https://github.com/semlinker/reactjs-interview-questions)