html单选与多选框
作者:互联网
总是忘记这个属性,还是记录一下。
单选框,name属性一样的话,才会进行互斥。
<form > <input type="radio" name="2" checked>我爱你 <input type="radio" name="2">我不爱你 <hr> <input type="checkbox" name="1">我爱你 <input type="checkbox" name="1">我不爱你 <input type="checkbox" name="1" checked>雨女无瓜 </form>
标签:我爱你,单选框,name,互斥,html,单选,选框,属性 来源: https://www.cnblogs.com/KeithTee/p/15945966.html