Skip to content

Commit

Permalink
2024/05/10 時点の英語版に基づき更新
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Jun 14, 2024
1 parent 7f1b160 commit cd6a443
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions files/ja/web/api/document/characterset/index.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
---
title: Document.characterSet
title: "Document: characterSet プロパティ"
short-title: characterSet
slug: Web/API/Document/characterSet
l10n:
sourceCommit: 84f47487afe5ca1d6356231d1ec2688e22c0ef53
---

{{ ApiRef("DOM") }}

**`Document.characterSet`** プロパティは読み取り専用で、文書の[文字エンコーディング](/ja/docs/Glossary/character_encoding)を表す文字列を返します。 (文字エンコーディングは文字セットであり、入力されたバイト列をどのように文字として解釈するか規定します。)
**`Document.characterSet`** プロパティは読み取り専用で、この文書の現在の表示に使われている[文字エンコーディング](/ja/docs/Glossary/Character_encoding)を表す文字列を返します。

> **メモ:** 「文字セット」と「文字エンコーディング」は似ていますが違うものです。プロパティ名に反してエンコーディングを返します。
ユーザーは、 [Content-Type](/ja/docs/Web/HTTP/Headers/Content-Type) ヘッダーの中や `<meta charset="utf-8">` などのインラインで開発者が指定した文字エンコーディングを上書きできます。例えば Firefox では <kbd>表示 → テキストエンコーディング</kbd> メニューから可能です。このような上書き手段は開発者が誤って指定したエンコーディングによって[文字化け](https://ja.wikipedia.org/wiki/%E6%96%87%E5%AD%97%E5%8C%96%E3%81%91)を引き起こされたときに直すために提供されています。
##

> **メモ:** プロパティ `document.charset` および `document.inputEncoding` は、`document.characterSet` への古いエイリアスです。これらは使用しないでください。
## 構文

```js
var string = document.characterSet;
```
文字列です。

##

Expand Down

0 comments on commit cd6a443

Please sign in to comment.