標籤:顯示 下載 ref 不能 control key strong meta 編碼
meta是HTML的元標籤,包括了對應的HTML相關資訊,用戶端瀏覽器和服務端的陳序會根據這些資訊來進行處理。
http-equive類似於http頭部的協議,它回應瀏覽器一些重要的資訊,以協助正確精確的顯示網頁內容。
content(內容)這個網頁的格式的文本的,網頁模式。
charset(編碼)——這個網頁編碼utf-8中文編碼,這個是網頁內容的編碼,而不是檔案本身。其他中文的編碼可能會亂碼。
meta標籤的http-equive屬性文法格式:<meta http-equive="參數" content="變數值"/>
http-equive參數有以下幾種參數;
1,content-type(顯示字元集)
<meta http-equive="content-type" content=""/>------設定頁面使用的是字元集
2, cache-control(頭域)
<meta http-equive="cache-control" content="no-cache"/>-------清除緩衝(訪問這個網站需要再次下載)
cache-control:指請求和響應遵循的緩衝機制,不能被共用快取處理,允許伺服器描述使用者的部分響應資訊,此響應訊息對其他使用者響應無效。
緩衝指令包括:no-cache、 no-store、max-age、max-stale、min-fresh、only-if-cached
3、Expires content=0
<meta http-equive="Expires" content="0"/>----------設定網頁到期時間
4、pragma content=no-cahce
<meta http-equive="pragme" content="no-cache"/>-------用于禁止瀏覽器在本地機的緩衝中調閱網頁內容,但設定後一旦從網頁離開就無法從cache中調出。
5、Refresh content=2
<meta http-equive="Refresh" content="2"/>------自動重新整理並指向新頁面。
6、Cache-control content=store
<meta http-equive="cache-control" content="store"/>--------強制緩衝在任何情況下都不要儲存任何副本。
7、Pics-label
<meta http-equive="Pics-label" content=""/>--------網頁等於評價
8、keywords(關鍵字)
<meta http-equive="keywords" content="1,2,3,"/>---------關鍵字,搜尋引擎用的。
meta詳細解讀