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.
我必须制作一个水平月份滑块,它将有两个指针用于选择月份间隔。这可以在 sencha 中完成,还是我将不得不使用 jquery。但是,如果有人知道如何做到这一点或有任何链接,请回答........
HTML5:
Month: <input type="range" min="1" max="12">
或jQuery UI。
$("#slider").slider();
Month: <div id="slider"></div>
如果您希望用户选择日期,这里有一种更方便的方法:
$("#datepicker").datepicker(); Date: <input type="text" id="datepicker">