点击文字可以选中相应的checkbox

<html>
<head>
<title>中国站长天空-网页特效-表单特效-点击文字选中的复选框</title>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
</head>
<body>
<!--把下面代码加到<body>与</body>之间-->
<form>
<label for="check1">姓名</label>
<input type="checkbox" id="check1" value="123" name="name">
<label for="check2">密码</label>
<input type="checkbox" id="check2" value="456" name="name">
</form>
</body>
</html>

注意事项:文字必须是label标签内,checkbox的id和<label>标签内的for=""中的名字必须相同.

原文:http://blog.sina.com.cn/s/blog_52533e490100b63u.html

原文地址:https://www.cnblogs.com/qyhol/p/5626646.html