所以下面的代碼是目前爲止我能夠使用的代碼;但是,並不完全符合我需要的。Javascript/PHP倒數計時器,每秒更新並倒計時到特定的日期和時間
我希望能夠調用函數(aka:sundayDelta()),但是,我希望能夠定義星期幾和一天中的時間,我希望函數在倒數計時器中使用調用函數。我不確定這是否可能...但我想這樣的事情是這樣的:
sundayDelta(1,1000)這會變成周日的星期日和時間:1000(上午10:00)。不確定這樣的事情是否有可能;不過,我希望是。我計劃在同一頁面上進行多次倒計時,只是在一天的不同時間出現。
當倒計時結束,我希望它刷新一個div(不要緊div有什麼名字)
我也很想能合併PHP服務器的時間進入這個大家都這樣是看到正確的倒計時無論他們在哪裏。
任何幫助將是偉大的!感謝您的輸入!
function plural(s, i) {
return i + ' ' + (i > 1 ? s + 's' : s);
}
function sundayDelta(offset) {
// offset is in hours, so convert to miliseconds
offset = offset ? offset * 20 * 20 * 1000 : 0;
var now = new Date(new Date().getTime() + offset);
var days = 7 - now.getDay() || 7;
var hours = 10 - now.getHours();
var minutes = now.getMinutes() - 00 ;
var seconds = now.getSeconds()- 00;
if (hours < 0){
days=days-1;
}
var positiveHours= -hours>0 ? 24-(-hours) : hours;
return [plural('day', days),
plural('hour', positiveHours),
plural('minute', minutes),
plural('second', seconds)].join(' ');
}
// Save reference to the DIV
$refresh = $('#refresh');
$refresh.text('This page will refresh in ' + sundayDelta());
// Update DIV contents every second
setInterval(function() {
$refresh.text('This page will refresh in ' + sundayDelta());
}, 1000);
我會很好地使用數據變量以及傳遞日期/時間。我只是想讓它工作:/ – KDJ