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.
我正在使用jQuery Mobile 范围滑块。我想在时间范围内使用它。
是否可以隐藏位于滑块左侧和右侧的目标值框?
见图片:
您可以使用 CSS 隐藏输入:
.ui-rangeslider input { display: none; } .ui-rangeslider-sliders{ margin: 15px !important; }
这是一个演示