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 Demo
谁能让我知道这是哪个日期选择器,以及从哪里得到同样的结果。?
文档
简单的演示
$('input').datepicker();
您可以使用 jQuery UI 日期选择器或 HTML5 日期选择器。检查小提琴的演示
<input type="date" />
或者 ..
$("#datepicker").datepicker();
JSFIDDLE 演示