From 25c5fe20aa9808db93265b8a1b781bae28afb138 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 25 Aug 2024 09:27:49 +0900 Subject: [PATCH] =?UTF-8?q?2024/07/26=20=E6=99=82=E7=82=B9=E3=81=AE?= =?UTF-8?q?=E8=8B=B1=E8=AA=9E=E7=89=88=E3=81=AB=E5=9F=BA=E3=81=A5=E3=81=8D?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/api/navigator/useragent/index.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/files/ja/web/api/navigator/useragent/index.md b/files/ja/web/api/navigator/useragent/index.md index 2c8d071640de1c..f765b52dc4ed24 100644 --- a/files/ja/web/api/navigator/useragent/index.md +++ b/files/ja/web/api/navigator/useragent/index.md @@ -3,7 +3,7 @@ title: "Navigator: userAgent プロパティ" short-title: userAgent slug: Web/API/Navigator/userAgent l10n: - sourceCommit: 8d0cbeacdc1872f7e4d966177151585c58fb879e + sourceCommit: cfb7587e3e3122630ad6cbd94d834ecadbe0a746 --- {{ApiRef("HTML DOM")}} @@ -25,19 +25,13 @@ l10n: 文字列で、ブラウザーが {{Glossary("HTTP")}} ヘッダーで提供する完全なユーザーエージェント文字列と、 {{domxref("Navigator")}} オブジェクト上のメソッドやその他の関連メソッドへのレスポンスを指定します。 -ユーザーエージェント文字列は形式的な構造に基づいて構築されており、いくつかの情報に分解することができます。これらの情報の各部分は、ユーザ-が設定可能な他の Navigator のプロパティから来ています。Gecko ベースのブラウザは以下の一般的な構造に準拠しています。 - -```plain -userAgent = appCodeName/appVersion number (Platform; Security; OS-or-CPU; -Localization; rv: revision-version-number) product/productSub -Application-Name Application-Name-version -``` +ユーザーエージェント文字列は形式的な構造に基づいて構築されており、いくつかの情報に分解することができます。これらの情報の各部分は、ユーザー-が設定可能な他の Navigator のプロパティから来ています。ユーザーエージェント文字列の形式について、より詳しい情報については、HTTP の {{HTTPHeader("User-agent")}} ヘッダーを参照してください。 ## 例 ```js alert(window.navigator.userAgent); -// alerts "Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.2) Gecko/20010725 Netscape6/6.1" +// alerts "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:124.0) Gecko/20100101 Firefox/124.0" ``` ## 仕様書