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
<body> <div id="root"> <...
This article shares the specific code of Vue to r...
Table of contents 01 Introduction to Atomic DDL 0...
Phrase elements such as <em></em> can ...
It mainly shows how to configure X-Frame-Options,...
Given a div with the following background image: ...
Table of contents 1. mixin.scss 2. Single file us...
Preface What is data type conversion? The default...
Hello everyone, I am Liang Xu. When using Linux, ...
TabIndex is to press the Tab key to sequentially o...
Zero, Background I received a lot of alerts this ...
This article shares the detailed steps of install...
I just started working a few days ago and install...
Migration is unavoidable in many cases. Hardware ...
This article mainly introduces the implementation...