jQuery UI DatePicker:覆盖今天的 css
我使用 beforeShowDay 来突出显示 jQuery 日期选择器中的特殊日子。 我能够更改背景的唯一方法是在我的 css 类中使用“!important”标签。 这对于除“今天”之外的所有日子都非常有效。 css 不会改变背景颜色,只会改变边框。
我的CSS:
.genEvent a
{
border:solid 1px #DC143C !important;
background: #9696BA url(ui-bg_flat_75_9696BA_40x100.png) 50% 50% repeat-x !important;
}
I am using beforeShowDay to highlight special days in my jQuery datepicker. The only way I am able to change the background is to use the '!important' tag in my css class. This works perfectly for all days except 'today'. The css does not change the background color, only the border.
my css:
.genEvent a
{
border:solid 1px #DC143C !important;
background: #9696BA url(ui-bg_flat_75_9696BA_40x100.png) 50% 50% repeat-x !important;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试进一步限定选择器。
例如:
如果这有效,您也许可以删除其他
!important
,这是值得避免的,因为它有点像 反模式。You could try qualifying the selector further.
For example:
If that works you may be able to remove the other
!important
, which is worth avoiding as it's a bit of an antipattern.我在这里找到了这个 ……也许对你有帮助。
I found this here... might be of some help to you.