将bootstrap-datepicker限制为仅限工作日?

时间:2012-04-19 18:09:22

标签: jquery twitter-bootstrap datepicker bootstrap-datepicker

无论如何只允许在下面找到的引导日期选择器中选择工作日选项吗? https://github.com/eternicode/bootstrap-datepicker/

我正在实例化日期选择器:

$('#datepicker').datepicker();

/* Update datepicker plugin so that MM/DD/YYYY format is used. */
$.extend($.fn.datepicker.defaults, {
    parse: function (string) {
        var matches;
        if ((matches = string.match(/^(\d{2,2})\/(\d{2,2})\/(\d{4,4})$/))) {
            return new Date(matches[3], matches[1] - 1, matches[2]);
        } else {
            return null;
        }
    },
    format: function (date) {
        var
        month = (date.getMonth() + 1).toString(),
        dom = date.getDate().toString();
        if (month.length === 1) {
            month = "0" + month;
        }
        if (dom.length === 1) {
            dom = "0" + dom;
        }
        return month + "/" + dom + "/" + date.getFullYear();
    }
});  

感谢您的帮助。

4 个答案:

答案 0 :(得分:30)

https://github.com/eternicode/bootstrap-datepicker的最新版本已经选择禁用特定工作日的选择。来自the docs

  

daysOfWeekDisabled

     

String,Array。默认值:'',[]

     

应禁用的星期几。值为0(星期日)至6(星期六)。多个值应以逗号分隔。示例:禁用周末:'0,6'[0,6]

换句话说,只需像这样实例化你的日期选择器:

$('#datepicker').datepicker({
    daysOfWeekDisabled: [0,6]
});

这是一个证明这一点的jsfiddle:http://jsfiddle.net/vj77M/1/

答案 1 :(得分:11)

**更新**

Bootstrap datepicker现在有一个daysOfWeekDisabled选项。请参阅下面的@fin's答案。

** OLD ANSWER **

Here is a working demo

假设您的星期几星期天开始:

$(function() {
    function disableWeekends($this) {
        var $days = $this.find('.datepicker-days tr').each(function() {
            var $days = $(this).find('.day');
            $days.eq(0).addClass('old').click(false); //Sunday
            $days.eq(6).addClass('old').click(false); //Saturday
        });

    }

    $('#dp1').datepicker({
        format: 'mm-dd-yyyy'
    });

    // get instance of the jQuery object created by
    // datepicker    
    var datepicker = $('#dp1').data('datepicker').picker;

    // disable weekends in the pre-rendered version
    disableWeekends(datepicker);

    // disable weekends whenever the month changes
    var _fill = datepicker.fill;
    datepicker.fill = function() {
        _fill.call(this);
        disableWeekends(this.picker);
    };

});​

如果没有,只需将$ days.eq(...)更改为正确的索引。

当然,这只涵盖点击事件,让您朝着正确的方向前进。我非常确定键盘导航等其他内容可能需要解决。


修改

对于最新版本,请使用适当的代码

// get instance of the jQuery object created by datepicker    
var datepicker = $('#dp1').data('datepicker');

// disable weekends in the pre-rendered version
disableWeekends(datepicker.picker);

// disable weekends whenever the month changes
var _fill = datepicker.fill;
datepicker.fill = function() {{
    _fill.call(this);
    disableWeekends(datepicker.picker);
}};

答案 2 :(得分:0)

你也可以尝试一下。

onRender: function(date) {
    return date.getDay() == 0 || date.getDay() == 6 ? 'disabled' : '';
}
希望它对某人有所帮助。 :)

答案 3 :(得分:-1)

$(document).ready(function(){


var date_input=$('input[name="date"]'); 

var container=$('.bootstrap-iso form').length>0 ? $('.bootstrap-iso form').parent() : "body";

date_input.datepicker({


format: 'dd/mm/yyyy',

container: container,

weekStart: 0,

daysOfWeekDisabled: "0,1,2,3,4,5",

daysOfWeekHighlighted: "6",

todayHighlight: true,

autoclose: true,


})

})