没有选定日期的日期选择器?

可能重复:
JQuery Datepicker - 没有默认日期

如果datepicker没有给出默认日期,则在打开时,它会突出显示今天,就好像它已被选中一样。 是否有可能打开datepicker没有任何日期预选?


你不能删除选中的defaultDate ,因为它总会选择一些东西(如果你将它留空,它将会选择今天)。 然而,功能方面,它并没有真正有所作为,所以解决它的一种方法是从日期中删除选择类,如下所示:

$( "#datepicker" ).datepicker({
   beforeShow: function(input, inst) {       
       window.setTimeout(function(){
           $(inst.dpDiv).find('.ui-state-highlight.ui-state-hover').removeClass('ui-state-highlight ui-state-hover')      
       },0)     
   },
});

例如:http://jsfiddle.net/niklasvh/zhVgm/

链接地址: http://www.djcxy.com/p/53117.html

上一篇: Datepicker with no selected date?

下一篇: Get the attributes from the interface methods and the class methods