如何在反应中关注输入日期字段?
How to focus input date field in react?
你能告诉我如何在反应中聚焦输入日期字段吗?我正在使用语义插件
https://www.npmjs.com/package/semantic-ui-calendar-react
我想将日期输入字段集中在按钮上,点击这里是我的代码。
这是我的代码
https://codesandbox.io/s/3l414mno5
focus = () => {
console.log(this.a);
this.a[0].onFocus();
// this.inputRef.focus()
};
为什么输入框没有焦点?
有更新吗?
你能告诉我如何在反应中聚焦输入日期字段吗?我正在使用语义插件 https://www.npmjs.com/package/semantic-ui-calendar-react
我想将日期输入字段集中在按钮上,点击这里是我的代码。 这是我的代码 https://codesandbox.io/s/3l414mno5
focus = () => {
console.log(this.a);
this.a[0].onFocus();
// this.inputRef.focus()
};
为什么输入框没有焦点? 有更新吗?