ログインフォームがあります:
<form>
<div class="username">
<label for="username">Email</label><br />
<input type="text" class="field" value="Enter your email" name="email" id="id_email">
</div>
<div class="password">
<label for="password">Password</label><br />
<input type="password" class="field" name="password" id="id_password">
</div>
</form>
ユーザーがあるフィールドから別のフィールドにタブ移動したときに、フィールドのテキスト全体を強調表示するのではなく、フィールドの先頭に選択を設定するようにしたいと考えています。例は、https ://squareup.com/ のログイン フォームで確認できます。
テキスト入力の先頭にカーソルを設定する関数がありますsetCursorAtBeginning
.jsまたはjQueryを使用して上記をどのように達成しますか(それが可能であれば望ましい)?