我有一个 jQuery 代码,它将匹配取自 此处的文本字段中的密码。但它没有完成。任何人都可以帮助我如何通过此代码匹配文本字段中的密码吗?谢谢。
这是我用于密码匹配的 jQuery 代码段。我需要有我认为的“无”部分的逻辑。
{
"confirm": { // password matching
"regex": "none",
"alertText": "* Your field is not matching"
},
"telephone": {
"regex": "/^[0-9\-\(\)\ ]+$/",
"alertText": "* Invalid phone number"
},
"email": { // For email validation
"regex": "/^[a-zA-Z0-9_\.\-]+\@([a-zA-Z0-9\-]+\.)+[a-zA-Z0-9]{2,4}$/",
"alertText": "* Invalid email address"
}
}
我认为在这段代码中没有给出匹配的 loginc"regex":"none"
部分。有人能帮忙吗?