解釋大型網站js,css檔案後面為什麼有參數?

來源:互聯網
上載者:User
  
  1.    1. <script type="text/javascript" src="base.js?1217128319"></script> 
    2. <link rel='stylesheet' href='http://liupeng.us/base.css?version=2.3.3' type='text/css' />
    3. <link rel='stylesheet' href='http://liupeng.us/base.css?version=20080727182553' type='text/css' />

有同學經常遇到html頁面裡載入的js與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.