标签为 input 元素定义标注(标记)。
<form> //方式一: <label for="male">Male</label> <input type="radio" name="sex" id="male" /> //方式二: <label> <input type="radio" name="radiobutton" value="radiobutton" />测试? </label> </form>