Skip to content

Commit

Permalink
2024/10/12 時点の英語版に基づき新規翻訳
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Oct 30, 2024
1 parent 0461ef2 commit 7cbd760
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions files/ja/web/api/htmlformelement/autocomplete/index.md
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 7cbd760

Please sign in to comment.