jQuery 日期选择器的 z-index

发布于 2024-12-19 12:57:40 字数 533 浏览 1 评论 0原文

我正在使用 jQuery 日期选择器和 buttonImage,下面有一个自定义样式的选择表单元素(http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/ ),它使用 z-index 为 5

。无法在日期选择器中与选择框重叠的部分选择日期。在 css 中,我提到了日期选择器的 z-index,如下所示:

.ui-widget { font-family: Arial, Helvetica, sans-serif;字体大小:11px; z 索引:1000; } .ui-datepicker、.ui-datepicker 表、.ui-datepicker td、.ui-datepicker td 跨度、.ui-datepicker td {z-index:1000; } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {z-index:1000;但

仍然不起作用。有什么帮助吗?

I am using jQuery date picker with buttonImage and below that there is a custom styled select form element (http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/ ) which uses z-index of 5.

I could not select the dates in datepicker in the portions where it overlaps with select box. In the css I have mentioned the z-index for datepicker as below:

.ui-widget { font-family: Arial, Helvetica, sans-serif; font-size: 11px; z-index:1000; }
.ui-datepicker, .ui-datepicker table, .ui-datepicker td, .ui-datepicker td span, .ui-datepicker td a {z-index:1000; }
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {z-index:1000; }

But still not working. Any help?

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

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

发布评论

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

评论(1

难理解 2024-12-26 12:57:40

如果你想要日期选择器位于其他 css 之上,请尝试以下一个:

<style>
    .ui-datepicker { z-index: 9999; }
</style>

if you want the datepicker above your other css try this one:

<style>
    .ui-datepicker { z-index: 9999; }
</style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文