Eu tenho um selecionador de data onde mostro dois meses e quero escolher aleatoriamente 3 datas em cada mês visível
$('.date').datepicker({
minDate: new Date(),
dateFormat: 'DD, MM, d, yy',
constrainInput: true,
beforeShowDay: processDates,
numberOfMonths: 2,
showButtonPanel: true,
showOn: "button",
buttonImage: "images/calendar_icon.jpg",
buttonImageOnly: true
});
Aqui está meu cálculo
var now = new Date();
var nowTime = parseInt(now.getTime()/1000);
var randomDateSet = {};
function getRandomSet(y,m) {
var monthIndex = "m"+y+""+m; // m20121 for Jan
if (randomDateSet[monthIndex]) return randomDateSet[monthIndex];
// generate here
.
. - I need this part
.
return randomDateSet[monthIndex];
}
function processDay(date) { // this is calculated for each day so we need a singleton for the array
var dateTime = parseInt(date.getTime()/1000);
if (dateTime <= (nowTime-86400)) {
return [false]; // earlier than today
}
var m = date.getMonth(), d = date.getDate(), y = date.getFullYear();
var randomDates = getRandomSet(y,m);
for (i = 0; i < randomDates.length; i++) {
if($.inArray((m+1) + '-' + d + '-' + y,randomDates) != -1 || new Date() > date) {
return [true,"highlight","Some message"];
}
}
return [true,"normal"]; // ordinary day
}
javascript
date
random
jquery-ui-datepicker
mplungjan
fonte
fonte
function randomDateAfterDate(start, days) { return new Date(start.getTime() + (Math.random()*days*24*60*60*1000)); }
new Date(+(new Date()) - Math.floor(Math.random()*10000000000))
fonte
moment(new Date(+(new Date()) - Math.floor(Math.random()*10000000000))) .format('MM/DD/YYYY');
NOTA: Continue adicionando um zero de cada vez para aumentar o intervalo de anos produzido.
fonte
Você pode converter as datas limites em inteiros (
Date.getTime()
) e depois usarMath.random()
para gerar suas datas aleatórias dentro dos limites dados. Em seguida, volte aosDate
objetos comDate.setTime()
.fonte