文本框和单选框

文本框和单选框

 

 

 

 

 

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>

 

 

 

 

 

 

posted @ 2021-11-03 17:31  屯子里唯一的架构师  阅读(54)  评论(0编辑  收藏  举报