⽂本框以及input的属性及功能
属性:text(⽂本) 默认
password(保密密码)
input type="text"
密码: input type="password"
选项按钮:<input type="checkbox" name=" " value=" ">
其中name告诉系统什么内容
重复的name只能单选
不重复的可以多选
right为靠右
radio为单项
checkbox为复项
<input type="button" name=" " value=" ">:按钮
<input type="submit" name=" " value=" ">:提交
<input type="reset" name=" " value=" ">:重置
<input type="image" src=" ">添加图⽚
h5以下
<input type="email" name="email" value="邮箱">
邮箱:⾃动验证邮箱格式是否正确
<input type="url" name="url" value="url">
⾃动验证url是否正确
<input type="number" min=" 最⼩值" max="最⼤值" step="跳步数">
number为数字框
<input type="range" value="范围" name="range" max="100" min="0">
范围的意思
<input type="search" value="search" name="搜索">
搜索
<input type='color' value="颜⾊" name="颜⾊">
html内容文本框上颜⾊
input type="date" value="⽇期" name='date'>
⽇期
input的属性:
type="text"默认⽂本框
type="password"密码⽂本框
type="radio"单选按钮
type="checkbox"复选按钮
type="button"按钮
type="submit"提交按钮
type="reset"重置按钮
type="image" src=" "添加图⽚
h5:
type="email"邮箱 ⾃动验证邮箱是否正确
type="number"数字的按钮。其中有属性 min为最⼩值,max为最⼤值 ,step跳步数
type="range"范围 ,属性与上⾯相同
type="search"搜索
type="color"添加颜⾊
type="date"添加⽇期
下拉选项
<select>----属性size为可视范围出现的个数
<option></option>属性---selected:默认被选中的</select>
⽂本域
col:列 row:⾏
<textarea cols=" " rows=" "></textarea>
⽂本框的意思

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。