验证用户输入
我想比较 jsp 中的两个日期。验证应该就像用户输入未来日期时应该收到警报一样。开始日期或结束日期不应该是未来日期。日期格式是 12-5-2011 10:51:49 ..请帮忙
I want to compare two dates in jsp .validation should be like user should be alerted when he enters a futre date ..Start Date or end date should not be future date..Date format is 12-5-2011 10:51:49..Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想要进行客户端(js)验证,并且日期字符串格式如您所描述,您可以将该字符串转换为日期并将其与当前日期/时间进行比较:
If it's client side (js) validation you want, and the date string format is as you describe, you can convert that string to a Date and compare that to the current date/time:
日期应该可以很好地处理该格式。
Date should handle that format fine.
目前还不清楚你想在哪里进行验证。如果您想在浏览器上使用 JavaScript 来完成此操作,我只需从现有的 1000 个 JavaScript 日期选择器中选择一个即可。他们中的大多数都有限制日期输入的选项。
例如这个 jQuery DatePicker
如果你想在 Java 代码 (JSP) 中执行此操作,检查 SimpleDateFormat
It's not very clear where you want to do the validation. If you want to do it in JavaScript on the browser, I'd just pick one of the 1000's of JavaScript datepickers that are around. Most of them have an option to limit date input.
For instance this jQuery DatePicker
If you want to do it in Java code (JSP), check the SimpleDateFormat