码迷,mamicode.com
首页 > Web开发 > 详细

jquery datepicker 只显示年月

时间:2015-10-06 18:12:04      阅读:878      评论:0      收藏:0      [点我收藏+]

标签:

首先修改默认日期赋值

<script type="text/javascript">
$(function(){
    $(‘#searchDate‘).datepicker({
        changeMonth: true,
        changeYear: true,
        dateFormat: ‘yy-mm‘,
        showButtonPanel: true,
        onClose: function(dateText, inst) {
            var month = $("#ui-datepicker-div .ui-datepicker-month option:selected").val();
            var year = $("#ui-datepicker-div .ui-datepicker-year option:selected").val();
            month = parseInt(month)+1;//要对月值加1才是实际的月份
            if(month < 10){
                month = "0" + month;
            }
            $(‘#searchDate‘).val(year + ‘-‘ + month);
        }
    });
});
</script>

然后隐藏day面板

<style type="text/css">
.ui-datepicker-calendar {display: none;}
</style>

 

jquery datepicker 只显示年月

标签:

原文地址:http://www.cnblogs.com/jinimy/p/4857323.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!