Add ?v= version number after js or css to prevent browser caching

Add ?v= version number after js or css to prevent browser caching

Copy code
The code is as follows:

<span style="font-size:14px;">css and js with parameters (such as .css?v= and .js?v= or .css?version= and .js?version= )
<script type=”text/javascript” src=”jb51.js?version=1.2.6″></script>
<link rel='stylesheet' href='base.css?version=2.3.3′ type='text/css' />

There are two possibilities for using parameters:

First, the script does not exist, but is dynamically generated by the server, so it has a version number to distinguish it. That is, the above code is equivalent to the file

Copy code
The code is as follows:

<script type=”text/javascript” src=”jb51.js”></script>
<link rel='stylesheet' href='base.css' type='text/css' />


But the browser will think it is a certain version of the file!

Second, the client will cache these css or js files. Therefore, every time the js or css file is upgraded and the version number is changed, the client browser will re-download the new js or css file, which serves the purpose of refreshing the cache. Sometimes you may find that after you modify the style or js, it remains unchanged when you refresh it. This is because the client has cached the CSS or JS file, so adding parameters is still helpful!
The second situation is the most common, but both may exist at the same time. </span>

<<:  Summary of Common Terms in CSS (Cascading Style Sheet)

>>:  How to use Flex layout to achieve scrolling of fixed content area in the head

Recommend

Vue implements weather forecast function

This article shares the specific code of Vue to r...

Detailed explanation of MySQL 8.0 atomic DDL syntax

Table of contents 01 Introduction to Atomic DDL 0...

HTML small tag usage tips

Phrase elements such as <em></em> can ...

CSS inheritance method

Given a div with the following background image: ...

Vue globally introduces scss (mixin)

Table of contents 1. mixin.scss 2. Single file us...

Detailed Tutorial on Using xargs Command on Linux

Hello everyone, I am Liang Xu. When using Linux, ...

Web Design TabIndex Element

TabIndex is to press the Tab key to sequentially o...

Problems with index and FROM_UNIXTIME in mysql

Zero, Background I received a lot of alerts this ...

CentOS installation mysql5.7 detailed tutorial

This article shares the detailed steps of install...

Solution to 1067 when Mysql starts in Windows

I just started working a few days ago and install...

5 ways to migrate Docker containers to other servers

Migration is unavoidable in many cases. Hardware ...

HTML+CSS to achieve surround reflection loading effect

This article mainly introduces the implementation...