四、用label标签提升用户体验
label标签常常被大家忽略了,合理利用会使页面的用户体验得到提升,我们可以对表单的说明文字使用label标签,这样当用户点击文字时,光标就定位到表单上了
如上图,当鼠标点击姓名文字时,光标就会定位到后边的文本框上了;点击男女文字也会选中相应的选项;同理,复选框和文本域也是一样的。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <style type="text/css"> </style> </head> <body> <p> <label for="name">姓名:</label> <input type="text" name="name" id="name" /> </p> <p>性别: <input type="radio" name="sex" id="male" value="radio" /><label for="male">男</label> <input type="radio" name="sex" id="female" value="radio2" /><label for="female">女</label></p> <p>爱好: <input type="checkbox" name="music" id="music" /><label for="music">听音乐</label> <input type="checkbox" name="web" id="web" /><label for="web">上网</label> <input type="checkbox" name="book" id="book" /><label for="book">看书</label></p> <p> <label for="content">简历:</label> <textarea name="content" id="content" cols="45" rows="5"></textarea> </p> <p> </p> <p> </p> </body> </html> |
提示:可以先修改部分代码后再运行