我有react-bootstrap模式和<input>模式。我想在<input>上设置自动焦点属性
下面的运行良好,但在控制台中显示了一个警告
<input type="text" autofocus='true' />
Warning: Invalid DOM property `autofocus`. Did you mean `autoFocus`?
下面的选项不工作,因为它们在打开模式时没有聚焦输入:
<input type="text" autoFocus='true' />
当我对输入设置自动焦点属性时,我将从react类返回,将生成以下错误:
error TS2339: Property 'autofocus' does not exist on type 'HTMLAttributes'
这是违规代码:
return <input type="text" onChange={this.handleChange} value={this.state.text} autofocus/>;
我尝试过更冗长的autofocus="autofocus",但没有运气。
这能用react和html
我正在创建一个表单,并从一个mui文本框中获取输入。我将textfield的值存储到value对象。我创建了一个onValueChanged函数来存储表单字段的键和值。我希望在textfield中显示当前值,并将其保存到useState常量值中。是否有其他方法可以做到这一点?event.target的基本结构是什么?
它给出了一个错误
TypeError: object is not iterable (cannot read property Symbol(Symbol.iterator))
TypeError: object is not iterable (cannot read pr
当你点击enter时,一个新的字段将被创建,但问题是离开,焦点将转移到新创建的字段,但问题是:它的focus an enter space in the previous字段` ? import React, { useState } from "react";
import "./styles.css";
export default function App() {
let elements = [
{ id: 0, text: "first", autoFocus: true },
{ id: 1, text
当你点击enter时,一个新的字段将被创建,但问题是离开,焦点将转移到新创建的字段,但问题是:它的focus an enter space in the previous字段` ? import React, { useState } from "react";
import "./styles.css";
export default function App() {
let elements = [
{ id: 0, text: "first", autoFocus: true },
{ id: 1, text