search
HomeWeb Front-endHTML TutorialThe function of input statement
The function of input statementJul 26, 2019 pm 05:09 PM
input

The function of input statement

Recommended tutorial: Html tutorial

#HTML

A simple HTML form containing two text input boxes and a submit button:

<form action="form_action.asp" method="get">
  First name: <input type="text" name="fname" />
  Last name: <input type="text" name="lname" />
  <input type="submit" value="Submit" /></form>

Definition and usage

tag is used to collect user information.

According to different type attribute values, the input field has many forms. Input fields can be text fields, checkboxes, masked text controls, radio buttons, buttons, etc.

Properties

##Propertiesacceptmime_typealignDeprecated. altautocompleteautofocus Specifies whether the input field gets focus when the page loads. checkeddisabledformformnameformactionURLOverride the action attribute of the form. formenctypeOverride the enctype attribute of the form. formmethodOverride the method attribute of the form. formnovalidateOverride the novalidate attribute of the form. formtargetOverride the form's target attribute. heightlistdatalist-idmaxSpecifies the maximum value of the input field. maxlengthminSpecifies the minimum value of the input field. multiplenamepatternregexp_patternSpecifies the pattern or format of the value of the input field.
Value Description
Specifies the type of file submitted via file upload.
left
  • right
  • top
  • middle
  • bottom
Specifies the alignment of image input.
text Define the alternative text for the image input.
on
  • off
Specifies whether to use the input field autocomplete feature.
autofocus

(Not applicable to type="hidden")

checked Specifies that this input element is the first time Should be selected when loading.
disabled Disables this element when the input element loads.
Specifies one or more forms to which the input field belongs.

(Applies to type="submit" and type="image")

See note

(Applies to type="submit" and type="image")

get
  • post

(Applies to type="submit" and type="image")

formnovalidate

If this attribute is used, validation will not be performed when submitting the form.

_blank
  • _self
  • _parent
  • _top
  • framename

(Applies to type="submit" and type="image")

    pixels
  • %
Define the height of the input field. (Applies to type="image")
refers to a predefined containing input field datalist of options.
    number
  • date

Please use it with the "min" attribute to create a range of legal values.

number Specifies the maximum length of characters in the input field.
    number
  • date

Please use it with the "max" attribute to create a range of legal values.

multiple If this attribute is used, more than one value is allowed.
field_name Define the name of the input element.

For example, pattern="[0-9]" means that the input value must be a number between 0 and 9.

placeholder text Specifies prompts to help the user fill in the input field.
readonly readonly Specifies that the input field is read-only.
required required Indicates that the value of the input field is required.
size number_of_char Define the width of the input field.
src URL Defines the URL of the image displayed as a submit button.
step number Specifies the legal digit interval of input characters.
type
  • button
  • checkbox
  • file
  • hidden
  • image
  • password
  • radio
  • reset
  • submit
  • text
Specify the type of input element.
value value Specifies the value of the input element.
width
  • pixels
  • %
Define the width of the input field. (Applies to type="image")

The above is the detailed content of The function of input statement. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
vue3怎么封装input组件和统一表单数据vue3怎么封装input组件和统一表单数据May 12, 2023 pm 03:58 PM

准备工作用vuecreateexample创建项目,参数大概如下:用原生input原生的input,主要是value和change,数据在change的时候需要同步。App.tsx如下:import{ref}from&#39;vue&#39;;exportdefault{setup(){//username就是数据constusername=ref(&#39;张三&#39;);//输入框变化的时候,同步数据constonInput=;return()=>({

laravel input隐藏域怎么实现laravel input隐藏域怎么实现Dec 12, 2022 am 10:07 AM

laravel input隐藏域的实现方法:1、找到并打开Blade模板文件;2、在Blade模板中使用method_field方法来创建隐藏域,其创建语法是“{{ method_field('DELETE') }}”。

Vue文档中的input框绑定事件详解Vue文档中的input框绑定事件详解Jun 21, 2023 am 08:12 AM

Vue.js是一种轻量级的JavaScript框架,具有易用、高效和灵活的特点,是目前广受欢迎的前端框架之一。在Vue.js中,input框绑定事件是一个十分常见的需求,本文将详细介绍Vue文档中的input框绑定事件。一、基础概念在Vue.js中,input框绑定事件指的是将输入框的值绑定到Vue实例的数据对象中,从而实现输入和响应的双向绑定。在Vue.j

点击input框没有光标怎么办点击input框没有光标怎么办Nov 24, 2023 am 09:44 AM

点击input框没有光标的解决办法:1、确认输入框焦点;2、清除浏览器缓存;3、更新浏览器;4、使用JavaScript;​5、检查硬件设备;6、检查输入框属性;7、调试JavaScript代码;8、检查页面其他元素;9、考虑浏览器兼容性。

Vue文档中的input框回车事件和验证函数使用方法Vue文档中的input框回车事件和验证函数使用方法Jun 20, 2023 am 09:13 AM

Vue是一个流行的JavaScript前端框架,它的核心是响应式数据绑定和组件系统。在Vue的应用程序中,input框是最常用的UI元素之一。在用户输入文本时,我们希望可以监听回车事件,并且在提交前对输入内容进行验证。本篇文章将介绍Vue文档中的input框回车事件和验证函数使用方法。一、Vue中input框回车事件在Vue中监听input框的回车事件非常简

jquery中input是什么元素jquery中input是什么元素Jun 06, 2023 pm 02:18 PM

jquery中input是选择器选取表单元素,其作用是:1、input用于搜集用户信息,根据不同的type属性值,输入字段拥有很多种形式,输入字段可以是文本字段、复选框、掩码后的文本控件、单选按钮、按钮等等;2、input标签可定义输入域的开始,在其中用户可输入数据;3、使用input标签来进行定义,其中包括文本字段、多选列表、可单击的图像和提交按钮等。

html5 input 禁止输入怎么实现html5 input 禁止输入怎么实现Feb 03, 2023 am 10:02 AM

html5 input禁止输入的实现方法:1、通过readonly规定输入字段为只读可复制;2、通过disabled实现被禁用的input元素可复制,但不能接收焦点;3、通过控制input的max length为0实现;4、通过“οnfοcus="this.blur();"”实现不能输入文本即可。

Razer DeathAdder V3 HyperSpeed: New mouse offers high resolution and up to 8,000 Hz wireless polling rateRazer DeathAdder V3 HyperSpeed: New mouse offers high resolution and up to 8,000 Hz wireless polling rateJun 22, 2024 am 12:20 AM

Razer offers an extensive range of gaming accessories. The manufacturer is now expanding this range with the Razer DeathAdder V3 HyperSpeed.This is a lightweight and ergonomic mouse that can be used wirelessly, offering high freedom and minimal hindr

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.