标签:lan lin tps div 方便 code put end 单选
<form> <label for="male">Male</label> <input type="radio" name="sex" id="male" /> <br /> <label for="female">Female</label> <input type="radio" name="sex" id="female" /> </form>
比如上面这段代码,其实不用套住input标签,它的作用就是为 input 元素定义标注。加上for属性,是为了点击文字,浏览器就会自动将焦点转到和标签相关的表单控件上,比如上面的单选按钮,方便操作。
参考链接:https://www.imooc.com/wenda/detail/382778
标签:lan lin tps div 方便 code put end 单选
原文地址:https://www.cnblogs.com/zlshtml/p/14858142.html