Home Web Front-end JS Tutorial jQuery gets the difference in date under various browsers_jquery

jQuery gets the difference in date under various browsers_jquery

May 16, 2016 pm 06:57 PM
jquery date Browser

If executed under IE:

Copy code The code is as follows:

var currentDate = new Date( );
alert(currentDate.getYear());

will pop up 2008, but under FF it is 108. Why is this?
First of all, let’s understand the “Greenwich Mean Time (GMT)” time. It starts from 1900. Let’s take a look at this operation expression: 108 1900 = 2008
The reason is that FF does not add the year 1900. Then the code is as follows:
Copy the code The code is as follows:

/**
* Get the current date
*
* @return {}
*/
function getCurrentDate() {
var userAgent = navigator.userAgent.toLowerCase();
// Since the year of IE is 2008 and FF is 108, determine
var currentYear = currentDate.getYear() ;
if ($.browser.mozilla) {
currentYear = 1900;
}
var currentDateStr = currentYear '-' (currentDate.getMonth() 1) '-' currentDate.getDate() ;
return currentDateStr;
};

The problem was solved and the test was successful
Later, I ran the system under GOOGLE browser chrome and encountered the same problem...
Look at this judgment:
if ($.browser.mozilla)
Here it is judged whether it is a FF browser. The above code has passed the test, so what about the GOOGLE browser?
Similarly, I also made a judgment:
var userAgent = navigator.userAgent.toLowerCase();
var chrome = /chrome/.test(userAgent);
The browser judgment of jQuery is applied here Method, use regular expressions to obtain a series of browser parameters, and then query whether there is a chrome string. If there is a GOOGLE browser, the final code is:
Copy the code The code is as follows:

/**
* Get the current date
*
* @return {}
*/
function getCurrentDate() {
var userAgent = navigator.userAgent.toLowerCase ();
//Determine whether it is Google’s browser
var chrome = /chrome/.test(userAgent);
var currentDate = new Date();
// Due to the year of IE is 2008 and FF is 108, determine
var currentYear = currentDate.getYear();
if ($.browser.mozilla || chrome) {
currentYear = 1900;
}
var currentDateStr = currentYear '-' (currentDate.getMonth() 1) '-'
currentDate.getDate();
return currentDateStr;
};

Other browsers follow Logical reasoning is enough
The last thing to note is the method of obtaining the month: currentDate.getMonth() 1. Because the date starts from 0 when it was originally designed, we have to add one to the obtained month.
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? Apr 02, 2025 am 07:15 AM

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

What is the reason for redirecting 404 errors after logging in with Selenium? How to solve it? What is the reason for redirecting 404 errors after logging in with Selenium? How to solve it? Apr 01, 2025 pm 10:54 PM

Solution to Redirecting 404 Errors after Simulation Login When using Selenium for Simulation Login, we often encounter some difficult problems. �...

How to implement cross-application jump for Word plug-in login authorization? How to implement cross-application jump for Word plug-in login authorization? Apr 01, 2025 pm 11:27 PM

How to implement cross-application jump for Word plug-in login authorization? When using certain Word plugins, we often encounter this scenario: click on the login in the plugin...

How to avoid third-party interfaces returning 403 errors in Node environment? How to avoid third-party interfaces returning 403 errors in Node environment? Apr 01, 2025 pm 02:03 PM

How to avoid the third-party interface returning 403 error in the Node environment. When calling the third-party website interface using Node.js, you sometimes encounter the problem of returning 403 error. �...

Why did the small window become blank after scanning the QR code on WeChat? How to solve it? Why did the small window become blank after scanning the QR code on WeChat? How to solve it? Apr 01, 2025 pm 03:54 PM

Handle the problem of blank small window after scanning the QR code on WeChat. When using WeChat to scan the QR code on WeChat, we often encounter some unexpected problems. A common...

How to jump from Word plug-in to browser for login authorization? How to jump from Word plug-in to browser for login authorization? Apr 01, 2025 pm 08:27 PM

How to achieve login authorization from within the application to outside the application? In some applications, we often encounter the need to jump from one application to another...

The Python subprocess module fails to execute the wmic datafile command. How to solve it? The Python subprocess module fails to execute the wmic datafile command. How to solve it? Apr 01, 2025 pm 08:48 PM

Use Python's subprocess module to execute wmic...

How to get news data bypassing Investing.com's anti-crawler mechanism? How to get news data bypassing Investing.com's anti-crawler mechanism? Apr 02, 2025 am 07:03 AM

Understanding the anti-crawling strategy of Investing.com Many people often try to crawl news data from Investing.com (https://cn.investing.com/news/latest-news)...

See all articles