jquery-ui日期插件datepicker仅显示年月且含有全部按钮

1.日历插件仅显示年月,需要在html中作如下处理:

2.因业务需要,需要查询全部,故使用清除按钮做为全部,后台查询方法体现在插件的onClose方法,如果放在beforeShow则会出现后台重复调用。

时间:

js代码:

$('#datePickerMon').datepicker({
    changeMonth: true,
    changeYear: true,
    dateFormat: 'yy-mm',
    showButtonPanel: true,
    monthNamesShort: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'],
    closeText: '选择',
    currentText: '本月',
    isSelMon:'true',
    onClose: function (dateText, inst) {
        var month = +$("#ui-datepicker-div .ui-datepicker-month :selected").val() + 1;
        var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
        if (month < 10) {
            month = '0' + month;
        }
        this.value = year + '-' + month;
        if (typeof this.blur === 'function') {
            this.blur();
        }
        var timeStr = $("#datePickerMon").val();
        $scope.applyListInfo.timeStr = timeStr + "-01";
        setTimeout(function () {
            if("全部"==$('#datePickerMon').val()){
                //查询全部的列表清单
                $scope.applyListInfo.timeStr = null;
                $scope.query(1);
            }else{
                $scope.query(1);
            }
        },2);

    },
    beforeShow: function(input) {
        setTimeout(function() {
            var buttonPane = $(input)
                .datepicker( "widget" )
                .find( ".ui-datepicker-buttonpane" );

            $( "

效果如下:

jquery-ui日期插件datepicker仅显示年月且含有全部按钮_第1张图片

注:此为个人笔记及总结,有误或有更好的解决方案请指正!谢谢  

你可能感兴趣的:(时间插件)