如何在更改日期时重置字段 ui.datepicker.js

发布于 2024-08-11 04:49:40 字数 190 浏览 3 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

很糊涂小朋友 2024-08-18 04:49:40

如果我正确理解您的问题,您需要使用 onSelect 回调事件,并在从日期选择器中选择日期时设置下拉列表的值示例

代码:

$('#dateInput').datepicker({
   onSelect: function(dateText, inst) {
                 $("#mydropdown").val("Please Select");
             }
});

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 datepicker

Example Code:

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