特效描述:jquery calendar.js 日歷選擇控件 帶節日日歷選擇器,日歷選擇控件帶節日日歷選擇器樣式
代碼結構
1. 引入CSS
<link href="hDate.css" rel="stylesheet" />
2. 引入JS
<script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/hDate.js"></script>
3. HTML代碼
<div style="width:520px;margin:40px auto 0 auto;"> 簡單<input id="Text1" onClick="calendar.show({ id: this })" type="text" /> 帶事件<input id="Text2" type="text" /> </div> <script type="text/javascript"> $("#Text2").click(function (e) { var ths = this; calendar.show({ id: this, ok: function () { alert(ths.value); } }); }); </script>