aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/hasfocus
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/document/hasfocus
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/document/hasfocus')
-rw-r--r--files/ja/web/api/document/hasfocus/index.html95
1 files changed, 95 insertions, 0 deletions
diff --git a/files/ja/web/api/document/hasfocus/index.html b/files/ja/web/api/document/hasfocus/index.html
new file mode 100644
index 0000000000..6ff543ee08
--- /dev/null
+++ b/files/ja/web/api/document/hasfocus/index.html
@@ -0,0 +1,95 @@
+---
+title: document.hasFocus()
+slug: Web/API/Document/hasFocus
+tags:
+ - API
+ - DOM
+ - Focus
+ - Method
+ - Reference
+ - フォーカス
+ - メソッド
+translation_of: Web/API/Document/hasFocus
+---
+<div>{{APIRef}}</div>
+
+<p><code><strong>hasFocus()</strong></code> は {{domxref("Document")}} インターフェイスのメソッドで、 {{jsxref("Boolean")}} の値を返し、文書または文書内の何れかの要素がフォーカスを持っているかどうかを示します。このメソッドは、文書内のアクティブな要素がフォーカスを持っているかどうかを特定するために使用することができます。</p>
+
+<div class="note">
+<p>文書を見ている時、文書内でフォーカスを持つ要素は常に<a href="/en-US/docs/Web/API/DocumentOrShadowRoot/activeElement">アクティブ要素</a>ですが、アクティブ要素がフォーカスを持っているとは限りません。例えば、フォアグラウンドになっていないポップアップウィンドウ内のアクティブ要素はフォーカスを持ちません。</p>
+</div>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">var <var>focused</var> = <var>document</var>.hasFocus();</pre>
+
+<h3 id="Return_value" name="Return_value">返値</h3>
+
+<p>文書内のアクティブ要素にフォーカスがない場合は <code>false</code> が、文書内のアクティブ要素にフォーカスがある場合は <code>true</code> が返ります。</p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<p>この例は、文書がフォーカスを持っているかどうかを300ミリ秒ごとに検査します。 <code>hasFocus()</code> の機能をテストするために、ボタンを押して新しいウィンドウを開き、二つのページの間を切り替えてみてください。</p>
+
+<h3 id="HTML">HTML</h3>
+
+<pre class="brush: html">&lt;p id="log"&gt;Awaiting focus check.&lt;/p&gt;
+&lt;button onclick="openWindow()"&gt;Open a new window&lt;/button&gt;</pre>
+
+<h3 id="JavaScript">JavaScript</h3>
+
+<pre class="brush: js">function checkPageFocus() {
+ let body = document.querySelector('body');
+ let log = document.getElementById('log');
+
+ if (document.hasFocus()) {
+ log.textContent = 'This document has the focus.';
+ body.style.background = '#fff';
+ }
+ else {
+ log.textContent = 'This document does not have the focus.';
+ body.style.background = '#ccc';
+ }
+}
+
+function openWindow() {
+ window.open('https://developer.mozilla.org/', 'MDN', 'width=640,height=320,left=150,top=150');
+}
+
+// Check page focus every 300 milliseconds
+setInterval(checkPageFocus, 300);</pre>
+
+<h3 id="Result" name="Result">結果</h3>
+
+<p>{{EmbedLiveSample("Example")}}</p>
+
+<h2 id="Specification" name="Specification">仕様書</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', 'interaction.html#dom-document-hasfocus', 'Document.hasFocus()')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("api.Document.hasFocus")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/Guide/User_experience/Using_the_Page_Visibility_API">Page Visibility API の使用</a></li>
+</ul>