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


HTML DOM inputEncoding用法及代碼示例


inputEncoding屬性返回用於解析文檔的字符編碼。此屬性沒有任何默認值。

用法:

document.inputEncoding

參數:


  • HTML DOM inputEncoding屬性不需要任何參數。

返回值:

  • HTML DOM inputEncoding屬性返回一個String,該字符串表示文檔的字符編碼。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML | DOM inputEncoding Property 
    </title> 
  
</head> 
  
<body> 
    <p> 
      Click the button to check the 
      encoding of this document 
    </p> 
    <button onclick="geek()"> 
        Alert document's encoding 
    </button> 
  
    <script> 
        function geek() { 
            var docEncoding = document.inputEncoding; 
            alert(docEncoding); 
        } 
    </script> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM inputEncoding()屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • Internet Explorer 9.0+
  • 火狐瀏覽器
  • Opera 15.0+
  • 蘋果瀏覽器


相關用法


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