我需要仅针对特定输入字段突出显示日期选择器方法

发布于 2025-01-12 10:11:48 字数 846 浏览 3 评论 0原文

我的代码中有 7 个输入字段,但我只想使用其中一个。此外,还有多个页面使用此日期选择器,所有这些都通过通用日期选择器指令完成。我不希望其他页面和输入字段受到此更改的影响。这是我的代码:

                beforeShowDay: function(date) {
                    var month = date.getMonth() + 1;
                    var year = date.getFullYear();
                    var day = date.getDate();
                    if (day < 10) {
                        day = '0' + day;
                    }
                    if (month < 10) {
                        month = '0' + month;
                    }
                    var newDate = month + "/" + day + "/" + year;
                    if (jQuery.inArray(newDate, highlight_date) != -1) {
                        //console.log(newDate);
                        return [true, "highlight"];
                    }
                    return [true];
                }

There are 7 input fields in my code but I want to use them for only one. Also there are multiple pages where this datepicker is used all done through a common datepicker directive. I don't want the other pages and input fields to get affected with this change. Here is my code :

                beforeShowDay: function(date) {
                    var month = date.getMonth() + 1;
                    var year = date.getFullYear();
                    var day = date.getDate();
                    if (day < 10) {
                        day = '0' + day;
                    }
                    if (month < 10) {
                        month = '0' + month;
                    }
                    var newDate = month + "/" + day + "/" + year;
                    if (jQuery.inArray(newDate, highlight_date) != -1) {
                        //console.log(newDate);
                        return [true, "highlight"];
                    }
                    return [true];
                }

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文