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


HTML <script> charset屬性用法及代碼示例


HTML <script>字符集屬性用於指定外部腳本中使用的字符編碼。

用法:

<script charset="charset">

屬性值:它包含值charset,該值指定外部腳本的字符編碼。


  • “ISO-8859-1”:用於指定拉丁字母的標準編碼。
  • “UTF-8”:用於指定Unicode的字符編碼。與ASCII兼容。

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      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 <script> Charset Attribute支持的瀏覽器:

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


相關用法


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