Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 HTML 表格的第一行实现了一个 jQuery 日期选择器,在以下行实现了两个滑块:
不幸的是,当日期选择器日历打开时,滑块按钮显示在其顶部:
我怎样才能摆脱这个问题?
您可以尝试使用 CSS 并确保日期选择器的 z-index 高于滑块的 z-index。
.ui-datepicker { z-index: 2; } .ui-slider { z-index: 1; }