具有自定义 jQuery 验证规则的 knockoutjs

发布于 2024-12-09 01:32:24 字数 276 浏览 0 评论 0原文

如何针对从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 技术交流群。

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

发布评论

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

评论(1

触ぅ动初心 2024-12-16 01:32:24

将您验证号码价格的部分替换为以下

<td><input class='required date' data-bind='value: price, uniqueName: true' /></td>

迄今为止的更改号码,它会为您验证日期。如果那是你想要的。

http://jsfiddle.net/cEy2X/15/

Replace your the part where it validates the price for a number with the following

<td><input class='required date' data-bind='value: price, uniqueName: true' /></td>

change number to date and it does validates the date for you. if that what you want.

http://jsfiddle.net/cEy2X/15/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文