JQuery中文日期控件_jquery

界面的确差点,但功能够了:能够加载表格中的日期,这点倒很实用。


在aspx页面中可以这样用:

<style type="text/css">@import "j/date/jquery.datepick.css";</style>

<script type="text/javascript" src="j/date/jquery.datepick.js"></script>

<script type="text/javascript" src="j/date/jquery.datepick-zh-CN.js"></script>

<script type="text/javascript">

    $(function(){

        $("#TextBox1").datepick({dateFormat: 'yy-mm-dd'});

        $("#TextBox2").datepick({dateFormat: 'yy-mm-dd'});

    });

</script>