关于多选默认项的问题
<form method="post" caption="save.php"> <lable>性别</lable> <br/> 男 <input type="radio" name="xb" value="男" checked="checked"/> 女 <input type="radio" name="xb" value="女"/> <br/> <lable>你喜欢我吗?</lable> <br/> <input type="checkbox" name="x1" value="喜欢" />喜欢 <input type="checkbox" name="x2" value="很喜欢" />很喜欢 <input type="checkbox" name="x3" value="非常喜欢" />非常喜欢 </form>
为什么我这段程序在“喜欢我吗”的选项中不能添加默认选项呢?