我正在尝试制作Google Calender重复对话框的副本,当我试图找出如何让jQuery datepicker返回一个月中的工作日数时,我就陷入困境,例如,如果我选择一个约会,也就是一个星期三,我想告诉我2012年12月我选择的那个月的星期三数量,如果我选择了那个星期三,它应该返回4月或4月。
这可能吗?
答案 0 :(得分:0)
尝试以下方法:
$("#datepicker").datepicker({
dateFormat: "DD, MM d, yy"
});
答案 1 :(得分:0)
做这样的事情怎么样:
JAVASCRIPT:
$(document).ready(function(){
$("#datePick").datepicker({
onSelect: function(event,ui){
$(ui.dpDiv)
.children(".ui-datepicker-calendar")
.find("td")
.filter(function() {
if($(this).text() === ui.selectedDay){
var col = $(this).parents("tr")
.children("td")
.index($(this));
var row = $(this).parents("tbody")
.children("tr")
.index($(this).parents("tr"));
if($(this).parents("tbody").children("tr").eq(0).children("td").eq(col).hasClass("ui-datepicker-unselectable")){
$("#result").text(row);
}else{
$("#result").text(row + 1);
}
}
})
}
});
});
DEMO:http://jsfiddle.net/93RGW/108/
希望这有帮助,如果您还有其他需要,请告诉我们!