天天看点

前端radio控件点击右边的label选择radio方式

方式一:

<label for="id1">hello</label>
<input type="radio" name="name1" id="id1" />
           

方式二:

<label>
  <input type="radio" name="radiobutton" value="radiobutton" />hello
</label>
           

方式三:

把label加入radio的group中