gpt4 book ai didi

reactjs - react 选择中的 onKeydown 事件

转载 作者:行者123 更新时间:2023-12-04 01:52:11 26 4
gpt4 key购买 nike

我正在使用 react-select vserion 2 组件。我希望能够在有人按下退格键时触发 OnKeyDown 事件。

有谁知道如何做到这一点?

最佳答案

react-select提供 Prop onKeyDown您可以将其用作以下示例:

 const onKeyDown = e => {
// catch the code of the key pressed
if (e.keyCode === 8) {
// do your stuff
}
};

在此函数中,您可以捕获 keyCode按下的键。

这里有 live example .

关于reactjs - react 选择中的 onKeydown 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52492181/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com