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(); });