calendar是自动生成日历的jQuery插件
引用css, js
<link rel="stylesheet" type="text/css" href="calendar_ui.css" />
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="calendar_ui.js"></script>
$(".wrapper").calendar({});
点击时间,返回选择的时间
$(".wrapper").calendar({
dateClick:function(currentDate){return currentDate;}
});