文本框的客户端验证

发布于 2024-09-24 10:04:56 字数 122 浏览 2 评论 0原文

我有一个 asp.net 控件文本框,单击它会出现 jquery 时间选择器,用户可以选择任何时间。但我想验证所选时间,使其比客户端的当前时间大一小时。我的意思是,当文本框值发生更改时,应该对其进行验证。谁能帮助我如何做到这一点?

I have an asp.net control textbox, clicking on which a jquery timepicker appears and user can select any time.But I want to validate the selected time so that it is one hour greater than the current time in the client side. I mean when textbox value will be changed it should be validated. Can anyone help me how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

灯下孤影 2024-10-01 10:04:56

客户端的选择进入的输入将有一个 id。做

$('#that_id').change(function() {
Validation Code/////
})

The input that the client's selection goes into will have an id. Do

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