diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/document/characterset | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/document/characterset')
-rw-r--r-- | files/ja/web/api/document/characterset/index.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/files/ja/web/api/document/characterset/index.html b/files/ja/web/api/document/characterset/index.html new file mode 100644 index 0000000000..16de3e28dd --- /dev/null +++ b/files/ja/web/api/document/characterset/index.html @@ -0,0 +1,61 @@ +--- +title: document.characterSet +slug: Web/API/Document/characterSet +tags: + - API + - DOM + - Document + - Property + - Read-only + - Reference +translation_of: Web/API/Document/characterSet +--- +<p>{{ApiRef("DOM")}}</p> + +<h2 id="Summary" name="Summary">概要</h2> + +<p>読み取り専用の <code><strong>Document.characterSet</strong></code> プロパティは、文書の<a href="/ja/docs/Glossary/character_encoding">文字エンコーディング</a>を表す文字列を返します。(文字エンコーディングは文字セットであり、入力されたバイト列をどのように文字として解釈するか規定します。)</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" name="Syntax">構文</h2> + +<pre class="syntaxbox notranslate">var <em>string</em> = document.characterSet</pre> + +<h2 id="Example" name="Example">例</h2> + +<pre class="brush:html notranslate"><button onclick="console.log(document.characterSet);"> + Log character encoding +</button> +// "ISO-8859-1" や "UTF-8" など、文書の文字セットが開発者コンソールに表示されます</pre> + +<h2 id="Specifications" name="Specifications">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th>仕様書</th> + <th>策定状況</th> + <th>コメント</th> + </tr> + <tr> + <td>{{SpecName('DOM WHATWG', '#dom-document-characterset', 'characterSet')}}</td> + <td>{{Spec2('DOM WHATWG')}}</td> + <td>最初期の定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2> + + + +<p>{{Compat("api.Document.characterSet")}}</p> |