仅输入数字的类型
我制作了一个仅适用于数字的表单,我想在用户输入无效字母时提醒他,并删除字符或将输入框设为红色......,我该怎么做?
I made a form that works only with numbers, and I want alert the user when he type letters which are invalid alert he and delete the caracther or make the input box red ..., how can I make that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不愿意,请不要让用户输入任何其他内容。
您可以观察 onkeypress-Event 并检查 charCode。
如果它不是数字,只需返回 false。
Don't let the user type anything else, if you dont want to.
You can observe the onkeypress-Event and check the charCode.
If it's not a Number, simply return false.