js或css檔案後面跟參數

來源:互聯網
上載者:User
經常遇到頁面裡載入的js與css檔案帶有參數,比如:
<script type="text/javascript" src="group.js?version=1.2.6"></script>
<link rel='stylesheet' href='base.css?version=2.3.3' type='text/css' />

使用參數有兩種可能,

  • 指令碼並不存在,而是服務端動態產生的,因此帶了個版本號碼,以示區別。
  • 用戶端會緩衝這些css或js檔案,因此每次升級了js或css檔案後,改變版本號碼,用戶端瀏覽器就會重新下載新的js或css檔案

第二種情況最多,也可能兩種同時存在。

版本號碼,可以是一個隨機數,也可以是一個遞增的值,大版本小版本的方式,或者根據指令碼的產生時間書寫,比如 20080727182553 就是精確到了產生指令碼的秒,而 2.3.3 就是大版本小版本的方式。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.