文本框和单选框
value="阿里巴巴" 默认值
maxlength="5" 最长能写几个字符值
size="30" 文本框的长度
input type="radio"
value:单选框的值
name:表示组(就比如按性别为一组,name中必须一样)
<p>性别
<input type="radio" value="boy" name="sex"/>男
<input type="radio" value="gril" name="sex"/>女
</p>