blob: 8dd172b1a76c0ad6b9945f2f6c0a04f57cc0d85c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
---
title: Document.characterSet
slug: Web/API/Document/characterSet
tags:
- API
- DOM
- Document
- Property
- Read-only
- Reference
browser-compat: api.Document.characterSet
translation_of: Web/API/Document/characterSet
---
<div>{{ ApiRef("DOM") }}</div>
<p><span class="seoSummary"><code><strong>Document.characterSet</strong></code> プロパティは読み取り専用で、文書の<a href="/ja/docs/Glossary/character_encoding">文字エンコーディング</a>を表す文字列を返します。</span> (文字エンコーディングは文字セットであり、入力されたバイト列をどのように文字として解釈するか規定します。)</p>
<div class="note">
<p>「文字セット」と「文字エンコーディング」は似ていますが違うものです。プロパティ名に反してエンコーディングを返します。</p>
</div>
<p>ユーザーは、 <a href="/ja/docs/Web/HTTP/Headers/Content-Type">Content-Type</a> ヘッダーの中や <code><meta charset="utf-8"></code> などのインラインで開発者が指定した文字エンコーディングを上書きできます。例えば Firefox では <kbd>表示 → テキストエンコーディング</kbd> メニューから可能です。このような上書き手段は開発者が誤って指定したエンコーディングによって<a href="https://ja.wikipedia.org/wiki/%E6%96%87%E5%AD%97%E5%8C%96%E3%81%91">文字化け</a>を引き起こされたときに直すために提供されています。</p>
<div class="note">
<p>プロパティ <code>document.charset</code> および <code>document.inputEncoding</code> は、<code>document.characterSet</code> への古いエイリアスです。これらは使用しないでください。</p>
</div>
<h2 id="Syntax">構文</h2>
<pre
class="brush: js">var <em>string</em> = document.characterSet;</pre>
<h2 id="Example">例</h2>
<pre class="brush: html"><button onclick="console.log(document.characterSet);">
Log character encoding
</button>
<!-- "ISO-8859-1" や "UTF-8" など、文書の文字セットが開発者コンソールに表示されます -->
</pre>
<h2 id="Specifications">仕様書</h2>
{{Specifications}}
<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat}}</p>
|