gpt4 book ai didi

reactjs - if else 根据条件自动对焦

转载 作者:行者123 更新时间:2023-12-05 01:16:08 24 4
gpt4 key购买 nike

如何根据 this.props.email 是否存在自动对焦输入名称?

if(this.props.email){
// would like to set autofocus for <input value={email} name="userName">
}else{
// would like to set autofocus for <input name="password" />
}

<input value={email} name="userName">
<input name="password" />

我正在考虑使用 refs 但想知道是否有更好的方法来访问输入的名称

最佳答案

你可以试试这个

<input value={email} autoFocus={this.props.email} name="userName"> 

关于reactjs - if else 根据条件自动对焦,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54315024/

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