search
HomeWeb Front-endHTML TutorialCreate a form instance using tags in html

Create a form instance using tags in html

May 16, 2018 am 10:45 AM
htmlExampleform

This article mainly introduces how to use html tags to create form examples, which is one of the knowledge points that must be mastered in HTML. Interested friends can refer to it, I hope it will be helpful to everyone.

Form label: form

表单标签的主要作用是:在HTML页面中创建一个表单,在用户填写完表单信息后,将数据提交给服务器。需要填写数据的标签必须要放在表单标签体里面。

常用的属性:
    action:请求路径,在该属性中确定表单数据提交的服务器地址。
    method:请求方式。常用的请求方式有:get,post。
        get(默认):1.get的请求的数据有限
                    2.提交的表单数据是追加在请求的路径上,如:regist.action?username=jack&password=1111。
追加是在请求地址的后面加上?连接。之后每一对数据使用&连接。
        post:1.提交的数据不在请求路径上追加,不显示在地址栏上。
            2.理论上,post请求的数据量是无限的。

Input field label: input

输入域标签用于获得用户输入的信息,type属性的值不同,获取的方式也就不一样。
    常用属性:
        type属性  
            text:文本框,单行输入字段,用户可以在其中输入文本,
            password:密码框,该输入框中的输入字符将会以黑圆显示。
            radio:单选框,表示一组互斥选项按钮中的一个,当一个按钮被选中,之前的按钮就会变为非选中。
            checkbox:多选按钮。
            file:文件上传组件
            hidden:隐藏字段,数据会发送给服务器,但浏览器不会显示。
            reset:重置按钮,将表单恢复到默认值。
            submit:提交按钮,提交按钮会把表单数据发送到服务器。
    name属性:元素名,必须要提供name属性,表单数据才会提交到服务器中。服务器通过该值来获取数据。
    value属性:设置input标签的默认值,
    size属性:设置输入框的大小
    checked属性:单选框或复选框被选中。
    readonly:是否只读。
    disable:是否可用。
下拉列表标签,提供一些选项,来选中其中的一项或多项。需要配合子标签<option>来使用。
name属性:设置名称,必写项。
multiple属性:不写默认单选,取值为multiple表示多选。
size属性:多选时,可见的选项数目。

子标签</option><option>:下拉列表中的一个选项
    selected:选中当前的列表项。
    value:发送给服务器的选项值。</option>

Sample code:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>表单标签</title>
</head>
<body>
    <!--要提交到服务器中的所有信息,必须要用form标签包裹起来-->
    <form>
        <!--文本输入项-->
        用户名:<input type="text" name="usernam"/><br />
        <!--密码项-->
        密  码:<input type="password" name="password" /><br />
        确认密码:<input type="password" name="password2" /><br />
        <!--单选按钮-->
        性别:<input type="radio" name="sex" />男                        
        <input type="radio" name="sex" />女<br />
        <!--多选按钮-->
        兴趣爱好:<input type="checkbox" name="hobby" />写博客                        
        <input type="checkbox" name="hobby" />写代码                        
        <input type="checkbox" name="hobby" />看源码<br />
        <!--文件选项-->
        文件:<input type="file" name="file" /><br />
        <!--下拉列表标签-->
        居住城市:<select name="city">
        <option>--请选择--</option>
        <option>北京</option>
        <option>上海</option>
        <option>广州</option>
        </select><br />
        <!--提交按钮-->
        <input type="submit" value="提交按钮" /><br />
        <!--普通按钮-->
        <input type="button" value="普通按钮" /><br />
        <!--重置按钮-->
        <input type="reset" value="重置" /><br />
    </form>
    </body>
</html>

The effect is as follows:

Create a form instance using tags in html

Related recommendations:

How to use in HTML The operation of html form submission

htmlThe event onreset triggered after the form is reset

Detailed explanation of the usage of html form option menu option and optgruop tag

The above is the detailed content of Create a form instance using tags in html. 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
How do you insert an image into an HTML page?How do you insert an image into an HTML page?May 04, 2025 am 12:02 AM

ToinsertanimageintoanHTMLpage,usethetagwithsrcandaltattributes.1)UsealttextforaccessibilityandSEO.2)Implementsrcsetforresponsiveimages.3)Applylazyloadingwithloading="lazy"tooptimizeperformance.4)OptimizeimagesusingtoolslikeImageOptimtoreduc

HTML's Purpose: Enabling Web Browsers to Display ContentHTML's Purpose: Enabling Web Browsers to Display ContentMay 03, 2025 am 12:03 AM

The core purpose of HTML is to enable the browser to understand and display web content. 1. HTML defines the web page structure and content through tags, such as, to, etc. 2. HTML5 enhances multimedia support and introduces and tags. 3.HTML provides form elements to support user interaction. 4. Optimizing HTML code can improve web page performance, such as reducing HTTP requests and compressing HTML.

Why are HTML tags important for web development?Why are HTML tags important for web development?May 02, 2025 am 12:03 AM

HTMLtagsareessentialforwebdevelopmentastheystructureandenhancewebpages.1)Theydefinelayout,semantics,andinteractivity.2)SemantictagsimproveaccessibilityandSEO.3)Properuseoftagscanoptimizeperformanceandensurecross-browsercompatibility.

Explain the importance of using consistent coding style for HTML tags and attributes.Explain the importance of using consistent coding style for HTML tags and attributes.May 01, 2025 am 12:01 AM

A consistent HTML encoding style is important because it improves the readability, maintainability and efficiency of the code. 1) Use lowercase tags and attributes, 2) Keep consistent indentation, 3) Select and stick to single or double quotes, 4) Avoid mixing different styles in projects, 5) Use automation tools such as Prettier or ESLint to ensure consistency in styles.

How to implement multi-project carousel in Bootstrap 4?How to implement multi-project carousel in Bootstrap 4?Apr 30, 2025 pm 03:24 PM

Solution to implement multi-project carousel in Bootstrap4 Implementing multi-project carousel in Bootstrap4 is not an easy task. Although Bootstrap...

How does deepseek official website achieve the effect of penetrating mouse scroll event?How does deepseek official website achieve the effect of penetrating mouse scroll event?Apr 30, 2025 pm 03:21 PM

How to achieve the effect of mouse scrolling event penetration? When we browse the web, we often encounter some special interaction designs. For example, on deepseek official website, �...

How to modify the playback control style of HTML videoHow to modify the playback control style of HTML videoApr 30, 2025 pm 03:18 PM

The default playback control style of HTML video cannot be modified directly through CSS. 1. Create custom controls using JavaScript. 2. Beautify these controls through CSS. 3. Consider compatibility, user experience and performance, using libraries such as Video.js or Plyr can simplify the process.

What problems will be caused by using native select on your phone?What problems will be caused by using native select on your phone?Apr 30, 2025 pm 03:15 PM

Potential problems with using native select on mobile phones When developing mobile applications, we often encounter the need for selecting boxes. Normally, developers...

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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),

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use