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.
同じページ内の複数の場所でテキスト ボックスを使用しています。に を割り当てdatepickerましたtextboxが、 のtextboxいずれかに日付が表示されませんtextbox
datepicker
textbox
この方法を試してください
html:
<input type="text" class="datepicker" id="date_1" /> <input type="text" class="datepicker" id="date_2" /> <input type="text" class="datepicker" id="date_3" />
脚本:
$('.datepicker').each(function(){ $(this).datepicker(); });