标签

input

属性 值 描述
accept audio/video/image/*MIME_type 规定通过文件上传来提交的文件的类型。(只针对type="file")
alt text 定义图像输入的替代文本。 (只针对type="image")
autocomplete onoff autocomplete 属性规定 <input> 元素输入字段是否应该启用自动完成功能。
autofocusNew autofocus 属性规定当页面加载时 <input> 元素应该自动获得焦点。
checked checked checked 属性规定在页面加载时应该被预先选定的 <input> 元素。 (只针对 type="checkbox" 或者 type="radio")
disabled disabled disabled 属性规定应该禁用的 <input> 元素。
form form_id form 属性规定 <input> 元素所属的一个或多个表单。
formaction URL 属性规定当表单提交时处理输入控件的文件的 URL。(只针对 type="submit" 和 type="image")
formenctype application/x-www-form-urlencodedmultipart/form-datatext/plain 属性规定当表单数据提交到服务器时如何编码(只适合 type="submit" 和 type="image")。
formmethod getpost 定义发送表单数据到 action URL 的 HTTP 方法。 (只适合 type="submit" 和 type="image")
formnovalidate formnovalidate formnovalidate 属性覆盖 <form> 元素的 novalidate 属性。
formtarget _blank_self_parent_topframename 规定表示提交表单后在哪里显示接收到响应的名称或关键词。(只适合 type="submit" 和 type="image")
height pixels 规定 <input>元素的高度。(只针对type="image")
list datalist_id 属性引用 <datalist> 元素,其中包含 <input> 元素的预定义选项。
max numberdate 属性规定 <input> 元素的最大值。
maxlength number 属性规定 <input> 元素中允许的最大字符数。
min numberdate 属性规定 <input>元素的最小值。
multiple multiple 属性规定允许用户输入到 <input> 元素的多个值。
name text name 属性规定 <input> 元素的名称。
pattern regexp pattern 属性规定用于验证 <input> 元素的值的正则表达式。
placeholderNew text placeholder 属性规定可描述输入 <input> 字段预期值的简短的提示信息。
readonly readonly readonly 属性规定输入字段是只读的。
required required 属性规定必需在提交表单之前填写输入字段。
size number size 属性规定以字符数计的 <input> 元素的可见宽度。
src URL src 属性规定显示为提交按钮的图像的 URL。 (只针对type="image")
step number step 属性规定 <input> 元素的合法数字间隔。
type button\checkbox\color\date\datetime\datetime-local\email\file\hidden\image\month\number\password\radio\range\reset\search\submit\tel\text\time\url\week type 属性规定要显示的 <input> 元素的类型。
value text 指定 <input> 元素 value 的值。
width pixels width 属性规定 <input> 元素的宽度。 (只针对type="image")

猜你喜欢

转载自www.cnblogs.com/qq3279338858/p/8888416.html