我有一个 React 组件,它有一个input
带有附加ref的元素。我知道共同点:inputRef.current.focus();
使用 ref 来聚焦文本输入。但是,我正在努力寻找一个好的解决方案来从inputRef.current
. 我试过了:
let downEv = new KeyboardEvent('keydown', {'keyCode': 40, 'which': 40});
inputRef.current.dispatchEvent(downEv);
但是,这似乎没有任何作用。