我正在使用react-select vserion 2组件。我希望能够在有人按下Backspace键时触发OnKeyDown事件。
有人知道该怎么做吗?
答案 0 :(得分:0)
react-select
提供了一个道具onKeyDown
,您可以将其用作以下示例:
const onKeyDown = e => {
// catch the code of the key pressed
if (e.keyCode === 8) {
// do your stuff
}
};
在此功能中,您可以捕获按下的键的keyCode
。
这里是live example。