Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 asp.net 控件文本框,单击它会出现一个 jquery timepicker,用户可以选择任何时间。但我想验证所选时间,使其比客户端的当前时间大一小时。我的意思是当文本框值将被更改时,它应该被验证。谁能帮助我如何做到这一点?
客户选择进入的输入将有一个 id。做
$('#that_id').change(function() { Validation Code///// })