如何在 ReactJS 中使用 onKeyPress 事件?
ReactJS 中的 onKeyPress 事件发生在用户按下键盘上的某个键但并非针对所有键(例如所有浏览器中的 ALT、CTRL、SHIFT、ESC)时触发。
要在 ReactJS 中使用 onKeyPress 事件,我们将使用预定义的 onKeyPress 方法。
创建反应应用程序:
第 1 步:使用以下命令创建一个 React 应用程序:
npx create-react-app functiondemo
第 2 步:创建项目文件夹(即 functiondemo)后,使用以下命令移动到该文件夹:
cd functiondemo
项目结构:它将如下所示。
示例:在此示例中,我们将构建一个显示输入框中按下的键的应用程序。
文件名- App.js:现在在 App.js 文件中写下以下代码。在这里,App 是我们编写代码的默认组件。
Javascript
import React, { useState } from 'react';
const App = () => {
const [state, setState] = useState('');
const handler = (event) => {
// changing the state to the name of the key
// which is pressed
setState(event.key);
};
return (
Hi Geeks!
Key pressed is: {state}
{/* Passing the key pressed to the handler function */}
handler(e)} />
);
};
export default App;
注意:您可以在 App.css 文件中定义自己的样式。
运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:
npm start
输出: