Antd 不使用 onChange 更新输入值?
我已经绞尽脑汁尝试更新输入值以添加掩码,但没有结果,输入根本不更新值。
<Input
placeholder={'CNPJ'}
onChange={(e) => {
e.currentTarget.value = 'fdsfsd'
}}
ref={props.cnpj}/>
<input onChange={(e) => {
e.currentTarget.value = 'fdsfsd'
}}/>
I've been racking my brains for a while trying to update the input value to add a mask, but with no results the input doesn't update the value at all.
<Input
placeholder={'CNPJ'}
onChange={(e) => {
e.currentTarget.value = 'fdsfsd'
}}
ref={props.cnpj}/>
<input onChange={(e) => {
e.currentTarget.value = 'fdsfsd'
}}/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这对你有帮助。
Maybe this help you.