Autofocus the input in basic.html

This commit is contained in:
Luke Chang 2017-02-23 14:33:52 +08:00
Родитель 9b8a480b66
Коммит b2400d24d4
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -7,7 +7,7 @@
<body>
<h1>Form Autofill Demo Page</h1>
<form id="form">
<p><label>organization: <input type="text" id="organization" name="organization" autocomplete="organization"></label></p>
<p><label>organization: <input type="text" id="organization" name="organization" autocomplete="organization" autofocus></label></p>
<p><label>streetAddress: <input type="text" id="street-address" name="street-address" autocomplete="street-address"></label></p>
<p><label>addressLevel2: <input type="text" id="address-level2" name="address-level2" autocomplete="address-level2"></label></p>
<p><label>addressLevel1: <input type="text" id="address-level1" name="address-level1" autocomplete="address-level1"></label></p>
@ -22,8 +22,8 @@
<p><button id="btn">Add new input</button></p>
<form>
<p><input type="text" name="username"></p>
<p><input type="password" name="password"></p>
<p><input type="text" id="username" name="username"></p>
<p><input type="password" id="password" name="password"></p>
<p><input type="submit"></p>
</form>