2011-02-03 91 views
1

我正在使用jquery date picker in rails project,我想要disable這個日期是previous/ pastjquery date picker

有什麼辦法可以達到這個目的。還有時間,如果小於當前

回答

5

禁用所有日期到今天:

// get the current date 
var date = new Date(); 
var m = date.getMonth(), d = date.getDate(), y = date.getFullYear(); 

// Disable all dates till today 
$('#datepicker2').datepicker({ 
     minDate: new Date(y, m, d), 
     dateFormat: 'mm-dd-yy', 
}); 

看到在這個post

+0

COOOL,爲我工作...非常感謝您的 – supriya 2011-02-03 09:50:01