Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
416 views
in Technique[技术] by (71.8m points)

为什么在react的项目中阻止input输入框自动提示不好用啊?求解

以前阻止输入框自动提示只需要用autocomplete = 'off'就可以了,但是在react中用同一种方法不好用,为什么会这样,有什么好的解决办法么


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

1.onFocus={(e)=>{e.target.type = 'password'}}

2.

componentDidMount() {
            setTimeout(() => {
                this.refs.password.type = 'password'
            }, 10)
        }

3.

this.setState({
            password: e.target.value
        }, () => {
            this.refs.password.type = 'password'
        })

第1种不适合记住密码需求 第2种有缺陷 第3种最好


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
...