码迷,mamicode.com
首页 > 其他好文 > 详细

04:标签之input系列

时间:2020-04-13 19:48:11      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:类型   password   set   word   color   put   res   reset   bsp   

input标签常用的类型属性(name=key,values=值,提交到后端。)

        <input type="text">         # 文本
        <input type="password">     # 密码
        <input type="button">       # 按钮
        <input type="submit">       # 提交
        <input type="radio">        # 单选,根据name,values值做判断,以字典返回。checked="checked"是默认值选项
        <input type="checkbox">     # 多选,name相同,以列表返回。checked="checked"是默认值选项

        <input type="file">         # 上传文件,必须依赖form表单的一个属性enctype="multipart/form-data"
        <input type="reset" value="重置">

 textarea文本标签

       <textarea name="text">中间写默认值</textarea>   # 多行文本

 

04:标签之input系列

标签:类型   password   set   word   color   put   res   reset   bsp   

原文地址:https://www.cnblogs.com/yeyu1314/p/12693293.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!