React开发(193):react无障碍使用程序获取焦点第一种
Posted 前端小歌谣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React开发(193):react无障碍使用程序获取焦点第一种相关的知识,希望对你有一定的参考价值。
class CustomTextInput extends React.Component {
constructor(props) {
super(props);
// 创造一个 textInput DOM 元素的 ref this.textInput =
React.createRef(); }
render() {
// 使用 `ref` 回调函数以在实例的一个变量中存储文本输入 DOM 元素
//(比如,this.textInput)。 return (
<input
type="text"
ref={this.textInput} />
);
}
}
focus() {
// 使用原始的 DOM API 显式地聚焦在 text input 上
// 注意:我们通过访问 “current” 来获得 DOM 节点
this.textInput.current.focus();
}
以上是关于React开发(193):react无障碍使用程序获取焦点第一种的主要内容,如果未能解决你的问题,请参考以下文章
iOS 动态更新方案 JSPatch 与 React Native 的对比