标签:类型 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> # 多行文本
标签:类型 password set word color put res reset bsp
原文地址:https://www.cnblogs.com/yeyu1314/p/12693293.html