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.
月の間隔を選択するために使用される2つのポインターを持つ水平の月スライダーを作成する必要があります.これは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">