java scrip \
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>form中的lable标签</title>
</head>
<body>
<form>
<label for="慢跑">慢跑</label>
<input type="checkbox" name="慢跑" id="慢跑" />
<br />
<label for="登山">登山</label>
<input type="checkbox" name="登山" id="登山" />
<br />
<label for="篮球">篮球</label>
<input type="checkbox" name="篮球" id="篮球" />
</form>
</body>
</html>