巧妙避开浏览器的自动填充用户名密码

很简单,就是加上两个Input ,注意是是样式 设置为opacity

    return (
      
} value={username} onFocus={this.bindDocumentKeypress} onBlur={this.unbindDocumentKeypress} onChange={onChangeUsername} /> } type="password" value={password} onFocus={this.bindDocumentKeypress} onBlur={this.unbindDocumentKeypress} onChange={onChangePassword} />
)

你可能感兴趣的:(巧妙避开浏览器的自动填充用户名密码)