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/windoweventhandlers/onlanguagechange | |
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/windoweventhandlers/onlanguagechange')
-rw-r--r-- | files/ja/web/api/windoweventhandlers/onlanguagechange/index.html | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/files/ja/web/api/windoweventhandlers/onlanguagechange/index.html b/files/ja/web/api/windoweventhandlers/onlanguagechange/index.html new file mode 100644 index 0000000000..4af90d8573 --- /dev/null +++ b/files/ja/web/api/windoweventhandlers/onlanguagechange/index.html @@ -0,0 +1,67 @@ +--- +title: WindowEventHandlers.onlanguagechange +slug: Web/API/WindowEventHandlers/onlanguagechange +tags: + - API + - Event Handler + - Experimental + - HTML DOM + - Property + - Reference + - WindowEventHandlers +translation_of: Web/API/WindowEventHandlers/onlanguagechange +--- +<div>{{APIRef("HTML DOM")}} {{SeeCompatTable}}</div> + +<p><span class="seoSummary">{{domxref("WindowEventHandlers")}} ミックスインの <strong><code>onlanguagechange</code></strong> プロパティは、{{event("languagechange")}} イベントを処理するための {{domxref("EventHandler")}} です。</span></p> + +<p>このイベントは、このインターフェイスを実装するオブジェクト(通常は {{domxref("Window")}}、{{domxref("HTMLBodyElement")}}、{{domxref("HTMLIFrameElement")}})によって受信されます。 このイベントは、優先言語リストが更新されたことを知らせるためにブラウザーによって送信されます。 このリストは、{{domxref("NavigatorLanguage.languages")}} を介してアクセスできます。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox"><em>object</em>.onlanguagechange = <em>function</em>; +</pre> + +<h3 id="Value" name="Value">値</h3> + +<ul> + <li><code>function</code> は、<code>()</code> 接尾辞やパラメーターを持たないユーザー定義関数の名前、または <code>function(event) {...}</code> などの匿名関数宣言です。 イベントハンドラには常に、{{domxref("Event")}} 型のイベントを含む1つのパラメーターがあります。</li> +</ul> + +<h2 id="Example" name="Example">例</h2> + +<pre class="brush: js">window.onlanguagechange = function(event) { + console.log('languagechange イベントを検出!'); +}; +</pre> + +<h2 id="Specifications" name="Specifications">仕様</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様</th> + <th scope="col">状態</th> + <th scope="col">コメント</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('HTML WHATWG', '#handler-window-onlanguagechange', 'WindowEventHandler.onlanguagechange') }}</td> + <td>{{ Spec2('HTML WHATWG') }}</td> + <td>初期仕様</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + + + +<p>{{Compat("api.WindowEventHandlers.onlanguagechange")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{event("languagechange")}} イベントとその型の {{domxref("Event")}}</li> +</ul> |