From bf2096b4dc79f74d89acd227f57ad56966ef957f Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 11 Apr 2021 02:26:01 +0900 Subject: Revert "HTMLSelectElement.autofocus を更新" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 356e51637dbdce92e87ef99d63ce28801ec214e1. --- .../web/api/htmlselectelement/autofocus/index.html | 64 +++++++++++----------- 1 file changed, 32 insertions(+), 32 deletions(-) (limited to 'files/ja/web/api') diff --git a/files/ja/web/api/htmlselectelement/autofocus/index.html b/files/ja/web/api/htmlselectelement/autofocus/index.html index e3374e8fc3..b74bec952a 100644 --- a/files/ja/web/api/htmlselectelement/autofocus/index.html +++ b/files/ja/web/api/htmlselectelement/autofocus/index.html @@ -2,30 +2,30 @@ title: HTMLSelectElement.autofocus slug: Web/API/HTMLSelectElement/autofocus tags: -- API -- HTML forms -- HTMLSelectElement -- Property -- Reference + - API + - HTML forms + - HTMLSelectElement + - Property + - Reference translation_of: Web/API/HTMLSelectElement/autofocus ---

{{ APIRef("HTML DOM") }}

-

HTMLSelectElement.autofocus プロパティは、 HTML の {{htmlattrxref("autofocus", "select")}} 属性を反映した true または false の値を持ちます。これはユーザーが上書きしない限り、ページが読み込まれた際に関連付けられた {{HTMLElement("select")}} 要素がページ読み込み時に入力フォーカスを得るかどうかを示します。

+

HTMLSelectElement.autofocus プロパティは {{htmlattrxref("autofocus", "select")}} HTML属性を反映した {{jsxref("Boolean")}} です。これはユーザーが上書きしない限り、ページが読み込まれた際に関連付けられた {{HTMLElement("select")}} 要素がページ読み込み時に入力フォーカスを得るかどうかを示します。

-

この属性を指定することができるのは、 1 つの文書内のフォーム関連要素 1 つだけです。もし複数あった場合、属性が設定された最初の要素 (通常は該当する要素のうちページで最初のもの) が初期のフォーカスを得ます。

+

ドキュメント内のフォームに関連した、一つの要素だけがこの属性を指定できます。もし複数あった場合、属性がセットされた最初の要素 (通常はページの最初の要素) が初期のフォーカスを得ます。

-

このプロパティを設定しても、関連付けられた {{HTMLElement("select")}} 要素へフォーカスは設定されません。単純に文書へ 要素が挿入された ときにブラウザーへフォーカスを移動するよう指示するだけです。挿入後に設定した場合、すなわち文書が読み込まれた後のほとんどの場合では、目に見える効果はありません。

+

このプロパティを設定しても、関連付けられてた {{HTMLElement("select")}} 要素へフォーカスはセットされません: 単純にドキュメントへ 要素が挿入された ときにブラウザへフォーカスするように指示するだけです。挿入後の設定、ドキュメントが読み込まれた後のほとんどの時間では、目に見える効果はありません。

-

構文

+

文法Edit

-
aBool = aSelectElement.autofocus; // Get the value of autofocus
+
aBool = aSelectElement.autofocus; // Get the value of autofocus
 aSelectElement.autofocus = aBool; // Set the value of autofocus
 
-

+

HTML

@@ -41,30 +41,30 @@ aSelectElement.autofocus = aBool; // Set the value of autofocus var hasAutofocus = document.getElementById('mySelect').autofocus;
-

仕様書

+

仕様

- - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('HTML WHATWG', '#dom-fe-autofocus', 'autofocus')}}{{Spec2('HTML WHATWG')}}
{{SpecName('HTML5.2', - 'sec-forms.html#autofocusing-a-form-control-the-autofocus-attribute', - 'autofocus')}}{{Spec2('HTML5.2')}}
仕様ステータスコメント
{{SpecName('HTML WHATWG', '#dom-fe-autofocus', 'autofocus')}}{{Spec2('HTML WHATWG')}}
{{SpecName('HTML5 W3C', '#dom-htmlinputelement-autofocus', 'autofocus')}}{{Spec2('HTML5 W3C')}}
-

ブラウザーの互換性

+

ブラウザー実装状況

+ +

{{Compat("api.HTMLSelectElement.autofocus")}}

-- cgit v1.2.3-54-g00ecf