gpt4 book ai didi

javascript - ReactJs 使用 refs 来聚焦输入

转载 作者:行者123 更新时间:2023-12-03 16:50:46 25 4
gpt4 key购买 nike

<分区>

我正在尝试使用 refs 是 ReactJs,通过单击按钮来聚焦文本框。

但我收到以下错误消息:-

bundle.js:114 Uncaught TypeError: Cannot read property 'focus' of undefined

源代码

class FocusText extends Component{

handleClick(){
this.refs.myTextInput.focus();
}

render(){
return(
<div>
<input type="text" ref="myTextInput"/>
<input type="button"
value="Focus the text input"
onClick={this.handleClick.bind(this)}/>
</div>
);
}
}

React.render(<FocusText/>, document.getElementById('root'));

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