gpt4 book ai didi

JQuery DatePicker,如何高亮显示当前输入值日期?

转载 作者:技术小花猫 更新时间:2023-10-29 12:04:31 37 4
gpt4 key购买 nike

我正在使用 jquery 的 datepicker 控件,一切都很好,除了我无法让它突出显示当前选择的输入值(或当前日期)。尽管我的文本输入中有有效的日期值,并且可以让日期选择器返回正确的月份/年份,但我无法让它在日历上突出显示该日期。

这是我的代码:

$('.date_picker').datepicker({ dateFormat: 'dd/mm/yy', duration: '', gotoCurrent: true, defaultDate: -1});

..这是样式表:

/*datepicker*/
/* Main Style Sheet for jQuery UI date picker */
.ui-datepicker-div, .ui-datepicker-inline, #ui-datepicker-div {
/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
font-family: Verdana, Arial, sans-serif;
background: #ffffff url(images/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
font-size: 0.80em;
border: 4px solid #dddddd;
width: 15.5em;
padding: 2.5em .5em .5em .5em;
position: relative;
}
.ui-datepicker-div, #ui-datepicker-div {
z-index: 9999; /*must have*/
display: none;
}
.ui-datepicker-inline {
float: left;
display: block;
}
.ui-datepicker-control {
display: none;
}
.ui-datepicker-current {
display: none;
}
.ui-datepicker-next, .ui-datepicker-prev {
position: absolute;
left: .5em;
top: .5em;
background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
}
.ui-datepicker-next {
left: 14.6em;
}
.ui-datepicker-next:hover, .ui-datepicker-prev:hover {
background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
}
.ui-datepicker-next a, .ui-datepicker-prev a {
text-indent: -999999px;
width: 1.3em;
height: 1.4em;
display: block;
font-size: 1em;
background: url(images/888888_7x7_arrow_left.gif) 50% 50% no-repeat;
border: 1px solid #d3d3d3;
cursor: pointer;
}
.ui-datepicker-next a {
background: url(images/888888_7x7_arrow_right.gif) 50% 50% no-repeat;
}
.ui-datepicker-prev a:hover {
background: url(images/454545_7x7_arrow_left.gif) 50% 50% no-repeat;
}
.ui-datepicker-next a:hover {
background: url(images/454545_7x7_arrow_right.gif) 50% 50% no-repeat;
}
.ui-datepicker-prev a:active {
background: url(images/222222_7x7_arrow_left.gif) 50% 50% no-repeat;
}
.ui-datepicker-next a:active {
background: url(images/222222_7x7_arrow_right.gif) 50% 50% no-repeat;
}
.ui-datepicker-header select {
border: 1px solid #d3d3d3;
color: #555555;
background: #e6e6e6;
font-size: 1em;
line-height: 1.4em;
position: absolute;
top: .5em;
margin: 0 !important;
}
.ui-datepicker-header option:focus, .ui-datepicker-header option:hover {
background: #dadada;
}
.ui-datepicker-header select.ui-datepicker-new-month {
width: 7em;
left: 2.2em;
}
.ui-datepicker-header select.ui-datepicker-new-year {
width: 5em;
left: 9.4em;
}
table.ui-datepicker {
width: 15.5em;
text-align: right;
}
table.ui-datepicker td a {
padding: .1em .3em .1em 0;
display: block;
color: #555555;
background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
cursor: pointer;
border: 1px solid #ffffff;
}
table.ui-datepicker td a:hover {
border: 1px solid #999999;
color: #212121;
background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
}
table.ui-datepicker td a:active {
border: 1px solid #dddddd;
color: #222222;
background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
}
table.ui-datepicker .ui-datepicker-title-row td {
padding: .3em 0;
text-align: center;
font-size: .9em;
color: #222222;
text-transform: uppercase;
}
table.ui-datepicker .ui-datepicker-title-row td a {
color: #222222;
}
.ui-datepicker-cover {
display: none;
display/**/: block;
position: absolute;
z-index: -1;
filter: mask();
top: -4px;
left: -4px;
width: 193px;
height: 200px;
}

我正在使用 IE7 进行测试,但我在 Firefox 中看到了相同的行为。

关于这个问题有什么想法吗?

最佳答案

首先,您在哪个(些)浏览器中查看日期选择器?我注意到日期选择器中日期/部分的某些颜色在 IE6 中看起来与后来的浏览器(Firefox 3、Chrome、IE7)不同。

例如,IE6 似乎忽略了周末的背景颜色。

当前选中日期和今天日期的背景色都是通过CSS控制的。 last datepicker 的默认 CSS是main flora style sheet , 虽然我看到有一个 new version/stylesheet of the datepicker (我还没有正确阅读,我相信它可能是一个新版本)在 jQuery本周网站。

样式表中您需要更改背景颜色的类的相关默认名称是 -

 /* current input value background color */
.ui-datepicker-current-day
{
background: #83C948
}
/* today's background color */
.ui-datepicker-today
{
background: #83C948
}

编辑:

如果您使用的是 old Datepicker as is , 然后这些是插件 js 文件中的相关行-

this._currentClass = 'ui-datepicker-current-day'; 
// The name of the current day marker class


(printDate.getTime() == today.getTime() ? ' ui-datepicker-today' : '')) + '"' + ...
// highlight today (if different)

因此,你要么

  • 在您的 CSS 中需要这些 CSS 类 突出显示今天和 当前选择的日期

  • 您需要更改名称 插件js文件并使用相同的 CSS 中类的名称 样式表

就我个人而言,我会选择前者,因为它们是众所周知的类名。

编辑 2:

看来 new datepicker使用略有不同的 CSS 为当前选定日期和今天的日期着色。旧版本为表格单元格 (td) 元素设置样式,而新版本为单元格内的 anchor (a) 元素设置样式。

使用 Firebug在 Firefox 3(强烈推荐)中,今天要着色的 CSS 似乎是

.ui-state-highlight, .ui-widget-content .ui-state-highlight 
{
background:#FFE45C url(../images/?new=ffe45c&w=1&h=100&f=png&q=100&fltr[]=over|textures/03_highlight_soft.png|0|0|75) repeat-x scroll 50% top;
border:1px solid #FED22F;
color:#363636;
}

对于输入中当前选择的日期,它是

.ui-state-active, .ui-widget-content .ui-state-active 
{
background:#FFFFFF url(../images/?new=ffffff&w=1&h=400&f=png&q=100&fltr[]=over|textures/02_glass.png|0|0|65) repeat-x scroll 50% 50%;
border:1px solid #FBD850;
color:#EB8F00;
font-weight:bold;
outline-color:-moz-use-text-color;
outline-style:none;
outline-width:medium;
}

这些都来自 jQuery UI CSS Framework

关于JQuery DatePicker,如何高亮显示当前输入值日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/455247/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com