如何在更改日期时重置字段 ui.datepicker.js
我正在使用 ui.datepicker.js
我有一个表单,当日期更改时我希望另一个字段重置状态(该字段是一个下拉选择框)。
案例如下: 用户在日历中输入最新的账单日期(当他准备账单时),并选择未付款状态,当他收到钱时,他将手动将状态更改为已付款。
但下次用户计费时,他将更改最新的计费日期,我想确保状态切换回未付款。
I'm using ui.datepicker.js
I have a form and when the date is changed I want that another field reset the status (this field is a dropdown select box).
The case is the following:
The user enter the latest billing date in the calendar (when he prepare a bill) and he select the status unpaid, when he will received the money he will change the status manually to paid.
But next time the user will bill he will change the latest billing date and I want to make sure that the status is switch back to unpaid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解您的问题,您需要使用
onSelect
回调事件,并在从日期选择器中选择日期时设置下拉列表的值示例代码:
If I understand your issue correctly, You'll need to use the
onSelect
callback event and set the value of your dropdown when a date has been selected from the datepickerExample Code: