Jquery if 条件,如果字符串格式不正确,将调用警报
基本上,我试图制作一个 if 条件,如果不以正确的格式(即格式 (2011-09-20))输入日期,它将提醒用户这一事实。提前致谢!
Basically, I am trying to craft an if condition that will alert users if the do not enter their date in the proper format, i.e. the format (2011-09-20) it will alert users to this fact. Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用 正则表达式 (然后检查它是否可以解析为实际日期)
Just use a regular expression (and then check if it can be parsed into an actual date)
也许是这样的:
Maybe something like this: