Maison > interface Web > js tutoriel > le corps du texte

L'heure d'été est-elle en vigueur ? Une approche JavaScript pour détecter et calculer le décalage DST.

Patricia Arquette
Libérer: 2024-11-13 12:55:02
original
807 Les gens l'ont consulté

Is Daylight Saving Time in Effect? A JavaScript Approach to Detecting and Calculating DST Offset.

DST Detection and Offset Calculation in JavaScript

The given code calculates the time difference between two dates, breaking it down into years, days, hours, minutes, and seconds. However, Daylight Saving Time (DST) may cause discrepancies. This article delves into the mechanism for determining whether DST is in effect and calculating its offset.

Checking for DST

The key lies in the getTimezoneOffset() method. It returns a larger value during Standard Time compared to DST. By determining the expected offset during Standard Time, the code compares it with the offset for the given date. If the offset is smaller, it indicates DST.

getTimezoneOffset Considerations

Note that getTimezoneOffset() returns positive values for time zones west of UTC, which are typically represented as negative hours (e.g., Los Angeles: UTC–8h in Standard Time). In contrast, it returns negative values for the Eastern Hemisphere (e.g., Sydney: UTC+10h in winter).

Code Example

To extend Date with DST functionality:

Date.prototype.stdTimezoneOffset = function () {
    var jan = new Date(this.getFullYear(), 0, 1);
    var jul = new Date(this.getFullYear(), 6, 1);
    return Math.max(jan.getTimezoneOffset(), jul.getTimezoneOffset());
}

Date.prototype.isDstObserved = function () {
    return this.getTimezoneOffset() < this.stdTimezoneOffset();
}
Copier après la connexion

Usage:

var today = new Date();
if (today.isDstObserved()) { 
    alert ("Daylight saving time!");
}
Copier après la connexion

By incorporating this functionality, your code can accurately calculate time differences, even during DST transitions.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal