纯js开发防win7日历控件
不久前项目开发中遇到需要用js实现选择日期的需求,百度了下,确实一大把一大把的,但多少还是有些不符合当前需求,遂down了一份最接近的,然后修修改改,基本符合了...
先上几张效果图~~~
需要输入时间的 时间采用下拉框选择
使用 so easy ~
<input type="text" id="calender_notime" class="Calendar_inputBox" /> <script type="text/javascript"> new window.controls.Calendar('calender_notime', false); </script> <br /> <input type="text" id="calender" class="Calendar_inputBox" /> <script type="text/javascript"> new window.controls.Calendar('calender', true); //new window.controls.Calendar('calender');//第二参数可不传 </script>
嚯嚯~~~