当我在TextArea组件中的textarea上按 Enter 键时,焦点应位于Editor.js组件的textarea中。
这是我的父组件。
const Content = () => {
return (
<div>
<TextArea />
<Editor />
</div>
)
}
textarea.js(第一个孩子)
const TextArea = () => {
function handleChange(e){
//if e.target.value will be that of enter , bring focus to textarea of Editor.js
}
return (
<div>
<textarea
onChange={handleChange}
/>
</div>
)
编辑器.js
const Editor = () => {
return (
<div>
<textarea/>
</div>
)