當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML charset屬性用法及代碼示例


HTML中的charset屬性用於定義字符編碼。 charset屬性與<meta>和<script>元素一起使用。

<meta>標記中的字符集屬性:字符集屬性存在於meta元素中。它指定HTML文檔的字符編碼。

用法:

<meta charset="character_set"> 

例:此示例說明了元元素中charset屬性的使用。

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            HTML charset Attribute 
        </title> 
          
        <meta name="keywords" charset="UTF-8"
                content="Meta Tags, Metadata" />  
    </head>  
          
    <body style="text-align:center">  
        <h1>Hello GeeksforGeeks!</h1> 
          
        <h2> 
            HTML charset Attribute in Meta Element 
        </h2> 
    </body>  
</html>                    

輸出:



<script>標記中的Charset屬性:當腳本元素中存在charset屬性時,它指定在外部腳本中使用的字符編碼。

用法:

<script charset="charset">

例:本示例說明了腳本元素中charset屬性的使用。

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            Charset Attribute script tag 
        </title>  
          
        <style>  
            body {  
                text-align:center;  
            }  
            h1 {  
                color:green;  
            }  
        </style>  
    </head>  
      
    <body>  
        <h1>GeeksforGeeks</h1>  
          
        <h2> 
            HTML charset Attribute in  
            <script> Element 
        </h2>  
          
        <p id="Geeks"></p>  
          
          
        <script charset="UTF-8">  
            document.getElementById("Geeks").innerHTML 
                    = "Hello GeeksforGeeks!";  
        </script>  
    </body>  
</html>                    

輸出:

支持的瀏覽器:下麵列出了HTML字符集屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari




相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | charset Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。