フォーム入力時に、一度入力したユーザー名やパスワード、電話番号などを記憶して、次の入力時に自動で補完してくれる機能が『autocomplete』です。 「自動補完機能」などとも呼ばれますね。 今日はその『autocomplete』で指定できる値を紹介します。 自動補完機能autocomplete属性を指定できる要素 autocomplete属性は、type属性に以下の値が指定されている <input> <textarea> <select> 要素に使用できます。 type="hidden" type="text" type="search" type="url" type="tel" type="email" type="password" type="date" type="month" type="week" type="time" type="datetime-local" type
