admin管理员组文章数量:1350017
I'm trying to set up a phone number input in react-hook-form
library.
I set input type to number, but it still accepts "e" and "-" chars.
I tried to prevent it like this:
<Controller
name="phone"
control={control}
rules={{ required: true }}
render={({ onChange, value, ref }) => (
<Input
ref={ref}
type="number"
label="phone"
onChange={(e) =>
/[^e]/.test(e.target.value) && onChange(e.target.value)
}
val={value}
/>
But it doesn't work properly. Any remendations how to solve this problem?
I'm trying to set up a phone number input in react-hook-form
library.
I set input type to number, but it still accepts "e" and "-" chars.
I tried to prevent it like this:
<Controller
name="phone"
control={control}
rules={{ required: true }}
render={({ onChange, value, ref }) => (
<Input
ref={ref}
type="number"
label="phone"
onChange={(e) =>
/[^e]/.test(e.target.value) && onChange(e.target.value)
}
val={value}
/>
But it doesn't work properly. Any remendations how to solve this problem?
Share Improve this question edited Jul 16, 2021 at 11:31 NearHuscarl 82.1k23 gold badges320 silver badges282 bronze badges asked Apr 9, 2021 at 10:25 zagoorzagoor 1074 silver badges8 bronze badges 3-
"I'm trying to set up a phone number input" -- so why aren't you using
<input type="tel" />
which is intended for exactly that purpose? – Niet the Dark Absol Commented Apr 9, 2021 at 10:29 - 2 Because type="tel" allows all characters. Acts the same as type="text". – zagoor Commented Apr 9, 2021 at 10:32
- @zagoor Input is your customized ponent or es from a library ? Can you provide that code ? – Vo Quoc Thang Commented Apr 9, 2021 at 10:48
1 Answer
Reset to default 8If you want to prevent certain keys from being pressed, you can surpress the keydown
event after the check is failed:
<Input
onKeyPress={(e) => {
if (e.key === "e" || e.key === "-") {
e.preventDefault();
}
}}
/>
But if you allow all keys but validate it after being pressed, you can use the pattern
option like this:
<Controller
name="phone"
control={control}
rules={{ required: true, pattern: /^\d+$/ }}
render={(props) => {
const { onChange, value, ref } = props.field; // v7. use props if you're using v6
const { error } = props.meta;
return (
<Input
ref={ref}
type="number"
label="phone"
onChange={onChange}
val={value}
/>
);
}}
/>
版权声明:本文标题:javascript - How to block typing "e" and "-" characters in React Hook Form input? - Stack Ov 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743869049a2553108.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论