Apache/2.2.9 (Unix) mod_ssl/2.2.9 サーバー上に Joomla サイトがあり、最新の記事が表示されるように毎時 1 分後にページを更新したいと考えています。これはラジオ Web サイトなので、リスナーは、一度に何時間もサイト上でブラウザを開いたままにすることがよくあります。このスニペットを、1 時間ごとに 1 分後に更新するように変更できますか?
function refreshAt(hours, minutes, seconds) {
var now = new Date();
var then = new Date();
if(now.getHours() > hours ||
(now.getHours() == hours && now.getMinutes() > minutes) ||
now.getHours() == hours && now.getMinutes() == minutes && now.getSeconds() >= seconds) {
then.setDate(now.getDate() + 1);
}
then.setHours(hours);
then.setMinutes(minutes);
then.setSeconds(seconds);
var timeout = (then.getTime() - now.getTime());
setTimeout(function() { window.location.reload(true); }, timeout);
}
ありがとう