使用与此页面相关的 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>
答案 0 :(得分:3)
您还可以尝试使用Kendo UI。它有一个Calendar小部件和DatePicker小部件,它接受一个日期数组,从中可以很容易地自定义小部件的模板。
答案 1 :(得分: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
工作示例Here
Jquery文档表示“beforeShowDay:”选项。
更新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;
}
});
有关详细信息,请查看Highlight Specific Dates in jQuery UI DatePicker
我希望这会对你有所帮助。
答案 2 :(得分:0)
使用onDate
回调来实现目标。
示例:点击“逐日”标签&gt;国庆日(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