Jquery if 条件,如果字符串格式不正确,将调用警报

发布于 2024-12-05 07:29:38 字数 73 浏览 1 评论 0原文

基本上,我试图制作一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疑心病 2024-12-12 07:29:38

只需使用 正则表达式 (然后检查它是否可以解析为实际日期)

var testValue = "2011-09-91";

if(!testValue.match(/^[0-9]{4}(\-[0-9]{2}){2}$/) || isNaN(new Date(testValue)))
{
    alert("failure");
}

Just use a regular expression (and then check if it can be parsed into an actual date)

var testValue = "2011-09-91";

if(!testValue.match(/^[0-9]{4}(\-[0-9]{2}){2}$/) || isNaN(new Date(testValue)))
{
    alert("failure");
}
烟花易冷人易散 2024-12-12 07:29:38

也许是这样的:

if ('2011-09-20'.match(/[0-9]{4}-[0-9]{2}-[0-9]{2}/))
    alert('this is maybe a date in the correct format');
else
    alert('this is not the correct format');

Maybe something like this:

if ('2011-09-20'.match(/[0-9]{4}-[0-9]{2}-[0-9]{2}/))
    alert('this is maybe a date in the correct format');
else
    alert('this is not the correct format');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文