首先看下面要使用HTML自動(dòng)聚焦和占位文本的示例代碼
<!DOCTYPE html> 2: <html>
<head>
<title>注冊(cè)帳號(hào)</title>
<meta charset="utf-8">
</head>
<body>
<form method="post" action="goto">
<fieldset id="register_information">
<legend>新用戶注冊(cè)</legend>
<ol>
<li>
<label for="name">郵 箱</label>
<input type="email" id="name" name="name">
</li>
<li>
<label for="user"> 用戶名</label>
<input type="text" id="user" name="user">
</li>
<li>
<label for="nickname"> 顯示名稱</label>
<input type="text" id="nickname" name="user">
</li>
<li>
<label for="password">密碼</label>
<input type="password" id="password" name="user_password">
</li>
<li>
<label for="confirm_password">確認(rèn)密碼</label>
<input type="password" id="confirm_password" name="user_password">
</li>
</ol>
</fieldset>
</form>
</body>
</html>
使用自動(dòng)聚焦
要使用HTML5的自動(dòng)聚焦功能,只需要在表單域中添加autofocus屬性即可
例如上面,想讓頁(yè)面加載完成時(shí)自動(dòng)將光標(biāo)定位到表單的第一個(gè)表單域郵箱上以及提高輸入效率。
<li>
<label for="name">郵 箱</label>
<input type="email" id="name" name="name" autofocus>
</li>
需要注意的是,如果頁(yè)面中設(shè)置了多個(gè)autofocus屬性,那么用戶的光標(biāo)只會(huì)定位到最后一個(gè)設(shè)置了autofocus屬性的表單域上。
使用占位文本
占位文本的最大用處,就是向用戶說(shuō)明應(yīng)該如何正確的填寫(xiě)表單。即進(jìn)行輸入提示。要使用占位文本的話,只需要在輸入域中添加placeholder屬性即可
下面是使用了placeholder屬性的輸入表單域
<ol>
<li>
<label for="name">郵 箱</label>
<input type="email" id="name" name="name" autofocus placeholder="請(qǐng)輸入有效的郵件地址">
</li>
<li>
<label for="user"> 用戶名</label>
<input type="text" id="user" name="user" placeholder="輸入用戶名">
</li>
<li>
<label for="nickname"> 顯示名稱</label>
<input type="text" id="nickname" name="user" placeholder="輸入昵稱">
</li>
<li>
<label for="password">密碼</label>
<input type="password" id="password" name="user_password" placeholder="輸入密碼">
</li>
<li>
<label for="confirm_password">確認(rèn)密碼</label>
<input type="password" id="confirm_password" name="user_password" placeholder="再次輸入密碼">
</li>
</ol>
運(yùn)行效果如下
是否啟用自動(dòng)完成
在HTML5中引入了autocomplete屬性。用來(lái)通知瀏覽器是否為當(dāng)前表單域自動(dòng)填充數(shù)據(jù)。某些瀏覽器會(huì)記住用戶之前輸入的數(shù)據(jù),而在某些情況下,我們可能并不希望用戶使用記錄數(shù)據(jù),特別類似于密碼這一類的
關(guān)閉自動(dòng)完成
<input type="password" id="password" name="user_password" autocomplete="off" placeholder="輸入密碼">
只需要將atuocomplete的值設(shè)置成off,就可以阻止自動(dòng)完成。