React开发(194):react无障碍使用程序获取焦点第二种
Posted 前端小歌谣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React开发(194):react无障碍使用程序获取焦点第二种相关的知识,希望对你有一定的参考价值。
function CustomTextInput(props) {
return (
<div>
<input ref={props.inputRef} /> </div>
);
}
class Parent extends React.Component {
constructor(props) {
super(props);
this.inputElement = React.createRef(); }
render() {
return (
<CustomTextInput inputRef={this.inputElement} /> );
}
}
// 现在你就可以在需要时设置焦点了
this.inputElement.current.focus();
以上是关于React开发(194):react无障碍使用程序获取焦点第二种的主要内容,如果未能解决你的问题,请参考以下文章
iOS 动态更新方案 JSPatch 与 React Native 的对比