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


HTML DOM characterSet用法及代碼示例


characterSet屬性用於在解析時返回文檔的字符編碼。它是已用於文檔渲染的字符集,用戶也可以覆蓋編碼。如果在內存中創建文檔,則characterSet屬性將返回null。

用法:

document.characterSet

例:


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM characterSet Property</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>DOM characterSet Property</h2> 
  
    <p>For returning the characterSet of the current URL, 
      click on the button:</p> 
  
    <button onclick="myFunction()">Try it</button> 
    <p id="demo"></p> 
  
   <!-- Script to get the characterSet -->
    <script> 
        function myFunction() { 
            var x = document.characterSet; 
            document.getElementById("demo").innerHTML = x; 
        } 
    </script> 
</body> 
  
</html> 
                    

輸出:

單擊按鈕後:

支持的瀏覽器:

  • 穀歌瀏覽器45.0
  • Internet Explorer 9.0
  • Firefox 44.0
  • Opera 34.0
  • Safari 9.0


相關用法


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