From 7cbd7607cd6bb858c30ad718298d6f04eef8834e Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 26 Oct 2024 20:05:05 +0900 Subject: [PATCH] =?UTF-8?q?2024/10/12=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=96=B0=E8=A6=8F=E7=BF=BB=E8=A8=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/htmlformelement/autocomplete/index.md | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 files/ja/web/api/htmlformelement/autocomplete/index.md diff --git a/files/ja/web/api/htmlformelement/autocomplete/index.md b/files/ja/web/api/htmlformelement/autocomplete/index.md new file mode 100644 index 00000000000000..ab3b4a74e2f0c6 --- /dev/null +++ b/files/ja/web/api/htmlformelement/autocomplete/index.md @@ -0,0 +1,37 @@ +--- +title: "HTMLFormElement: autocomplete プロパティ" +short-title: autocomplete +slug: Web/API/HTMLFormElement/autocomplete +l10n: + sourceCommit: 4c81451d326b3bea82a02d912b9320273ad8572d +--- + +{{ APIRef("HTML DOM") }} + +**`autocomplete`** は {{DOMxRef("HTMLFormElement")}} インターフェイスのプロパティで、ブラウザーによってこのフォームのコントロールの値が自動的に補完できるかどうかを示します。これは、{{htmlelement("form")}} 要素の [`autocomplete`](/ja/docs/Web/HTML/Attributes/autocomplete) 属性を反映します。 + +## 値 + +文字列です。 `"off"` の値は明示的に `"off"` が設定された場合で、それ以外は常に `"on"` です。 + +## 例 + +```js +const formElement = document.getElementById("name"); +console.log(formElement.autocomplete); +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{HTMLElement("form")}} +- HTML の [`autocomplete`](/ja/docs/Web/HTML/Attributes/autocomplete) 属性 +- ARIA の [`aria-autocomplete`](/ja/docs/Web/Accessibility/ARIA/Attributes/aria-autocomplete) 属性 +- [自動補完の無効化](/ja/docs/Web/Security/Practical_implementation_guides/Turning_off_form_autocompletion)