具有自定义 jQuery 验证规则的 knockoutjs
如何针对从knockoutjs 模板项生成的字段添加自定义jquery 验证规则?
在这个“可编辑网格”的修改示例中(http://jsfiddle.net/cEy2X/),我有将价格字段更改为日期字段。我想在日期字段上添加自定义 jQuery 验证规则。我知道 jQuery Validation 有一个内置的“日期”,但这只是一个愚蠢的 javascript 日期格式检查。
感谢您的帮助。
How can i add custom jquery validation rules against the fields generated from knockoutjs's template items?
In this modified example of 'Editable grid' (http://jsfiddle.net/cEy2X/), I have changed the Price field to a Date field. I would like to add custom jQuery validation rules on the date fields. I know jQuery Validation has a built-in 'date' for that, but it's just a dumb javascript date format check.
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您验证号码价格的部分替换为以下
迄今为止的更改号码,它会为您验证日期。如果那是你想要的。
http://jsfiddle.net/cEy2X/15/
Replace your the part where it validates the price for a number with the following
change number to date and it does validates the date for you. if that what you want.
http://jsfiddle.net/cEy2X/15/