English 中文(简体)
jquery 验证引擎日期格式功能 [重复]
原标题:jquery validation engine date format function [duplicate]
  • 时间:2012-05-23 05:39:48
  •  标签:
  • jquery
This question already has answers here:
Closed 11 years ago.

Possible Duplicate:
Javascript date regex DD/MM/YYYY

i 使用此验证 : - < a href=""http://www.position-absolute.com/articles/jquery-form-validator-elect-form-validation-is-a-mes/"rel="无跟踪 noreferrer" >jquery 验证引擎

和默认的验证函数对日期格式的 :-

 "date": {
                    "regex": /^d{4}[/-](0?[1-9]|1[012])[/-](0?[1-9]|[12][0-9]|3[01])$/,
                    "alertText": "* Invalid date, must be in YYYY-MM-DD format"
                },

以 YYYY- MM- DD 格式表示, 我想将此修改为 DD- MM- YYYY

任何人都可以帮助我 重写此功能

最佳回答

日期regex 使用此链接

//match date in format MM/DD/YYYY
var dateMMDDYYYRegex =  ^(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)dd$ ;

check for more help click here- http://www.jquery4u.com/syntax/jquery-basic-regex-selector-examples/#.T70st0VYvg8

问题回答

假设您正在使用 Jquery 校验插件来验证窗体字段, 现在您想要用 mm/ dd/yyyyy 或 dd/ mm/ yyyy 或 dd- mm- yyyy 或 mm- dd- dd- yyyyy 或 mm- dd- yyyy 等自定义格式来验证日期字段, 那么无法通过通过参数来验证日期字段 。

目前, Jquery 校验插件不允许定义验证的日期格式 。

在此情况下, 您需要添加一个自定义函数, 并在其中写入日期格式验证代码, 并在验证规则函数中将该函数作为该字段的参数通过 。

http://triotips.com/programming/jquery/jquery/jquery-validate-plugin-Custom-date-format-format-validation-394.html>http://triotips.com/programming/jquery/jquery-validate-plugin-cust-date-format-validation-394.html

尝试

/^(0?[1-9]|[12][0-9]|3[01])[/-](0?[1-9]|1[012])[/-]d{4}$




相关问题
getGridParam is not a function

The HTML: <a href="javascript:void(0)" id="m1">Get Selected id s</a> The Function: jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam( selarrrow )...

selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

jQuery cycle page with links

I am using the cycle plugin with pager functionality like this : $j( #homebox ) .cycle({ fx: fade , speed: fast , timeout: 9000, pager: #home-thumbs , ...

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

jConfirm with this existing code

I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...

Wrap text after particular symbol with jQuery

What I m trying to do, is wrap text into div inside ll tag. It wouldn t be a problem, but I need to wrap text that appears particularly after "-" (minus) including "minus" itself. This is my html: &...

热门标签