23

以下にあるブートストラップ日付ピッカーで平日の選択のみを許可する方法はありますか? 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

4 に答える 4

11

** アップデート **

Bootstrap datepicker にdaysOfWeekDisabledオプションが追加されました。以下の@finの回答を参照してください。

** 古い回答 **

これが実際のデモです

あなたの週が日曜日に始まると仮定します:

$(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);
}};
于 2012-04-19T18:48:32.830 に答える