文本输入中的最小最大数字 - Jquery/javascript
我想设置在文本输入中输入的最小和最大允许数字我知道我可以使用范围输入来做到这一点,但在不兼容的浏览器中使用时它仍然具有最大和最小数吗?
如果没有,请为我指出正确的方向,感谢您的阅读。
I would like to set a minimum and maximum allowed number to be entered in text input I know I can do this with range input but will it still have the max and min when used in non compatible browsers?
if not could you please point me in the right direction, thanks for reading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 jquery 验证器插件。它有一组很好的功能,还有最小最大验证。但在服务器端检查值也是必须的。 这里是 min 和 最大。
Use jquery validator plugin. It has a nice set of features, and min max validation too. But checking values on server side is a must too. Here is an examples for min and max.
不;你永远不能依赖客户。还要始终检查服务器端。
No; you can never rely on the client. Always check on the server side as well.
我已经成功使用 jQuery h5Validate 插件。它的目标非常简单(这正是您想要的)。
另外,也在服务器端验证它。
I've had success with the jQuery h5Validate plugin. Its pretty simple in what it aims to accomplish (which is exactly what you want here).
Also, validate it on the server side too.