将label和radio或者checkbox整合在一起,实现单击文字选中

小知识点:
在网页中存在radio单选框和checkbox复选框时,他们后面都要跟文字,实现点击文字,则可以选中radio或者checkbox,只要在其后面加label,label将文字包围,指定label的for属性即可
<input type="checkbox" name="voltage" value="500" id="v1">
<label for="v1">500KV</label>
<input type="checkbox" name="voltage" value="220" id="v2">
<label for="v2">220KV</label>
<input type="checkbox" name="voltage" value="110" id="v3">
<label for="v3">110KV</label>


radio同上!

你可能感兴趣的:(checkbox,type,label,Radio)