5

使用与此页面相关的jQuery Datepicker http://keith-wood.name/datepick.html
我想突出显示指定由数组给出的日期

ex: array("2012-12-24" => "red", "2012-12-24" => "green")

如何获得这种方法。

我可怜的代码

<style type="text/css">
    @import"jquery.datepick.css";
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="jquery.datepick.js"></script>
<script type="text/javascript">
    $(function () {
        $('#popupDatepicker').datepick();
        $('#inlineDatepicker').datepick({
            onSelect: showDate
        });
    });

    function showDate(date) {
        alert('The date chosen is ' + date);
    }
</script>
</head>
<body>
    <p>A popup datepicker
        <input type="text" id="popupDatepicker">
    </p>
    <p>Or inline</p>
    <div id="inlineDatepicker"></div>
4

3 回答 3

3

您也可以尝试 Kendo UI。它有一个 Calendar 小部件和 DatePicker 小部件,它接受一组日期,从中可以轻松自定义小部件的模板。

剑道 UI - 日历

于 2012-12-25T10:14:53.983 回答
2

您可以使用您的代码库尝试以下一个。(这是一个示例)

CSS

.Highlighted a{
   background-color : Green !important;
   background-image :none !important;
   color: White !important;
   font-weight:bold !important;
   font-size: 12pt;
}

jQuery

$(document).ready(function() {
    var SelectedDates = {};
    SelectedDates[new Date('12/25/2012')] = new Date('12/25/2012');
    SelectedDates[new Date('05/04/2012')] = new Date('05/04/2012');
    SelectedDates[new Date('06/06/2012')] = new Date('06/06/2012');

    $('#txtDate').datepicker({
        beforeShowDay: function(date) {
            var Highlight = SelectedDates[date];
            if (Highlight) {
                return [true, "Highlighted", Highlight];
            }
            else {
                return [true, '', ''];
            }
        }
    });
});​

更新 1

这里的工作示例

Jquery 文档说有"beforeShowDay:" Option

检查Datepicker 小部件 API

更新 2:

您可以使用 Google CDN 引用 jquery,如下所示。因此,注释掉您的 jquery 引用并如下所示。

<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/themes/base/jquery-ui.css"
            type="text/css" media="all" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>

更新 3:

下面我只提到了伪代码。根据Jquery语法更改它。

$(document).ready(function() {

$('#txtDate').datepicker({
    beforeShowDay: function(date) {

      //according to the date you have to decide which css should load.
        var Highlight = SelectedDates[date];
        var yourColor = whichColor(SelectedDates[date]);

        if (Highlight  && yourColor =='red') {
            return [true, "RedHighlighted", Highlight];
        }
        else if (Highlight   && yourColor =='green') {
             return [true, "GreenHighlighted", Highlight];
        }
        else {
            return [true, '', ''];
        }
    }
});


//return a color according to your date logic
 function whichColor(dateArray) { 

      return color;
   }

});​</p>

有关更多信息,请检查突出显示 jQuery UI DatePicker 中的特定日期

我希望这对你有帮助。

于 2012-12-25T09:35:45.760 回答
0

使用onDate回调来实现目标。

示例:单击“逐日”选项卡 > 国庆 (CSS) 以查看演示

http://keith-wood.name/calendarsPicker.html

$('#nationalPicker').calendarsPicker({ 
    onDate: nationalDays,
    showTrigger: '#calImg'}); 

var natDays = [[1, 26, 'au'], [2, 6, 'nz'], [3, 17, 'ie'], [4, 27, 'za'], 
    [5, 25, 'ar'], [6, 6, 'se'], [7, 4, 'us'], [8, 17, 'id'], 
    [9, 7, 'br'], [10, 1, 'cn'], [11, 22, 'lb'], [12, 12, 'ke']]; 

function nationalDays(date, inMonth) { 
    if (inMonth) { 
        for (i = 0; i < natDays.length; i++) { 
            if (date.month() == natDays[i][0] && date.day() == natDays[i][1]) { 
                return {dateClass: natDays[i][2] + '_day', selectable: false}; 
            } 
        } 
    } 
    return {}; 
}

参考:http: //forum.jquery.com/topic/highlight-multiple-dates-on-keith-wood-jquery-datepick-plugin

于 2013-09-02T09:06:34.250 回答