lable for属性
<form method="post" action="http://example.com/form">
<p>
<label for="fave">Fruit: <input id="fave" name="fave" /></label>
</p>
<p>
<label for="name">Name: <input id="name" name="name" /></label>
</p>
<button>Submit Vote</button>
</form>
a.gif当点击<label for="fave">时,光标焦点会定位到<input id="fave" 为的输入框上,这样方便用户操作
网友评论