まず、HTML オート フォーカスとプレースホルダー テキストを使用するための以下のサンプル コードを確認します コードをコピーしますコードは次のとおりです: アカウントの登録 id="register_information "> user" > ユーザー名 表示名 /li> パスワードの確認 オートフォーカスを使用する HTML5 のオートフォーカス機能を使用するには、フォームフィールドに autofocus 属性を追加するだけですたとえば、上記のように考えてみましょうページが読み込まれると、カーソルがフォームの最初のフォーム フィールド メールボックスに自動的に配置され、入力効率が向上します。 コードをコピーします コードは次のとおりです。 ><メールのラベルラベル> ページに複数のオートフォーカス属性が設定されている場合、ユーザーのカーソルはオートフォーカス属性が設定されている最後のフォーム フィールドにのみ配置されることに注意してください。 プレースホルダー テキストを使用する プレースホルダー テキストの最大の用途は、フォームに正しく入力する方法をユーザーに説明することです。つまり、入力プロンプトが実行されます。プレースホルダー テキストを使用するには、入力フィールドにプレースホルダー属性を追加するだけです以下はプレースホルダー属性を使用した入力フォーム フィールドです コピーコード コードは次のとおりです: email< ;/ label> ;li> ; <パスワード>パスワード ="confirm_password" のラベル">パスワードの確認 The operation effect is as follows Whether autocomplete is enabled The autocomplete attribute was introduced in HTML5. Used to notify the browser whether to automatically fill in data for the current form field. Some browsers will remember the data previously entered by the user, and in some cases, we may not want the user to record the data, especially for things like passwords Turn off auto-complete Copy codeThe code is as follows: You only need to set the value of atuocomplete to off to prevent automatic completion.