Home Web Front-end HTML Tutorial 5. Html form tag_html/css_WEB-ITnose

5. Html form tag_html/css_WEB-ITnose

Jun 24, 2016 am 11:45 AM

The main function of form and form controls is to collect user experience. When the user submits the form, the content entered by the user will be submitted to the remote server as request parameters.

  • 1, form tag
  • : Create a form. This element will not generate a visual interface, but other controls must be placed in this tag. Commonly used attributes:
    action: This attribute is required and is used to specify the address to which the form is submitted when the confirmation button of the stand-alone form is used. It can be an absolute address or a relative address.
    method: used to specify what type of request to send when submitting a form, which can be get or post. The difference between get and post is mentioned in my http blog, so I won’t go into details here.
    enctype: used to specify the character set used when encoding form content. By default, form data is encoded as "application/x-www-form-urlencoded": that is, all characters are encoded before being sent to the server (spaces are converted to " " plus signs, special characters are converted to ASCII HEX values )
    There are three attribute values ​​for this attribute:
    application/x-www-form-urlencoded: Encode all characters before sending (default)
    multipart/form-data: Do not encode characters, use This value must be used when a form contains a file upload control.
    text/plain spaces are converted to " " plus signs, but special characters are not encoded.
    name: The unique name of the form, it is recommended to keep the same as the id.
    Target: How to open the url, _self, _blank, _top, _parent.
    Regarding this form tag, one thing that needs to be emphasized is how the form control is converted into the corresponding request parameter. The specific rules are as follows:
    1. Each form control with a name attribute corresponds to a request parameter, and there is no name attribute. The form control will not generate request parameters. If multiple form controls repeat a name attribute value, then only one request parameter will be generated, but this parameter has multiple values.
    2. The name attribute of the form control specifies the request parameter name, and the value specifies the request parameter value.
    3. If a form control sets the disabled="disabled" attribute, this form control will no longer generate request parameters.

  • 2, input tag
  • element is the most versatile among form controls. The following input elements are generated through this tag . This tag is an empty tag.
    1. Single-line text box: type="text"
    2. Password input box: type="password"
    3. Hidden field: type="hidden"
    4. Radio button: type="radio"
    5. Check box: type="checkbox"
    6. Image field: type="image"
    7. File upload field: type="file"
    8 , submit, reset, no action button: type="submit", type="reset", type="button"
    The element can specify core attributes such as id, style, class, etc., and can also specify Onclick, onfocus, onblur and other event attributes are as follows:
    1. checked, used to set whether single selection and multi-selection are selected
    2. disabled, used to disable this element
    3. maxlength, used to specify the maximum number of characters allowed to be entered in the text box
    4. readonly, read-only mode, cannot be modified
    5. size, specifies the width of the element
    6. src, image domain display The url of the image
    7. align, the alignment of the image field
    The following is an html containing the above elements:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>表单相关标签</title></head><body><form action="" method="get">单行文本框:<input type="text" name="userName" id="userName" /><br />不能编辑的文本框:<input type="text" name="userName1" id="userName1" readonly="readonly" /><br />密码框:<input type="password" name="passWord" id="passWord" /><br />隐藏域:<input type="hidden" name="linkin_id" id="linkin_id" /><br />单选:<input type="radio" name="age" id="age1" value="男" />男<input type="radio" name="age" id="age2" value="女" />女<br />多选:<input type="checkbox" name="age1" id="age3" value="男" />男<input type="checkbox" name="age1" id="age4" value="女" />女<br />文件上传域:<input type="file" /><br />图像域:<input type="image" src="" /><br />4个按钮:<input type="submit" value="提交" name="button1" /><input type="submit" value="提交" name="button2" disabled="disabled" /><input type="reset" value="重置" name="button3" /><input type="button" value="无动作" name="button4" /></form></body></html>
    Copy after login

  • 3. List box and drop-down menu
  • generates a list box or a drop-down menu is determined by the above two elements. If size or multiple is specified, then a list box is generated, otherwise it is a drop-down menu.
    : an option group. label, required, used to specify the label of this option group.
    The following is an html containing the above tags:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>下拉相关标签</title></head><body>	<form action="" method="get">		下拉:		<select>			<option value="LinkinPark">林肯</option>			<option value="NightWish">夜愿</option>		</select>		列表框1:		<select multiple="multiple">			<option value="LinkinPark">林肯</option>			<option value="NightWish">夜愿</option>		</select>		列表框2:		<select multiple="multiple"size="10">			<optgroup label="名字">			<option value="LinkinPark">林肯</option>			<option value="NightWish">夜愿</option>			</optgroup>			<optgroup label="国家">			<option value="LinkinPark">美国</option>			<option value="NightWish">芬兰</option>			</optgroup>		</select>	</form></body></html>
    Copy after login


  • 4. Use textarea to define the text area
  • 之间的内容将作为所对应的请求参数的参数值。
    关于这个标签还是经常会用到的,在以前我写表单的时候,将单行的文本框拉长拉宽,但是我们在输入的时候也只能是一行,不能换行的,忽忽。
    以下是包含这个标签的一份html:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>多行文本框相关标签</title></head><body>	<form action="" method="get">		单行文本框:<input type="text" size="20" height="20" /><br />		多行文本框:<textarea rows="10" cols="20"></textarea>	</form></body></html>
    Copy after login

  • 5,使用label定义标签
  • Statement of this Website
    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

    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 Article

    Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
    3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
    Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
    3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
    Nordhold: Fusion System, Explained
    3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    Hot Topics

    Java Tutorial
    1668
    14
    PHP Tutorial
    1273
    29
    C# Tutorial
    1255
    24
    HTML: The Structure, CSS: The Style, JavaScript: The Behavior HTML: The Structure, CSS: The Style, JavaScript: The Behavior Apr 18, 2025 am 12:09 AM

    The roles of HTML, CSS and JavaScript in web development are: 1. HTML defines the web page structure, 2. CSS controls the web page style, and 3. JavaScript adds dynamic behavior. Together, they build the framework, aesthetics and interactivity of modern websites.

    The Future of HTML, CSS, and JavaScript: Web Development Trends The Future of HTML, CSS, and JavaScript: Web Development Trends Apr 19, 2025 am 12:02 AM

    The future trends of HTML are semantics and web components, the future trends of CSS are CSS-in-JS and CSSHoudini, and the future trends of JavaScript are WebAssembly and Serverless. 1. HTML semantics improve accessibility and SEO effects, and Web components improve development efficiency, but attention should be paid to browser compatibility. 2. CSS-in-JS enhances style management flexibility but may increase file size. CSSHoudini allows direct operation of CSS rendering. 3.WebAssembly optimizes browser application performance but has a steep learning curve, and Serverless simplifies development but requires optimization of cold start problems.

    The Future of HTML: Evolution and Trends in Web Design The Future of HTML: Evolution and Trends in Web Design Apr 17, 2025 am 12:12 AM

    The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

    HTML vs. CSS vs. JavaScript: A Comparative Overview HTML vs. CSS vs. JavaScript: A Comparative Overview Apr 16, 2025 am 12:04 AM

    The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

    HTML: Building the Structure of Web Pages HTML: Building the Structure of Web Pages Apr 14, 2025 am 12:14 AM

    HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

    HTML vs. CSS and JavaScript: Comparing Web Technologies HTML vs. CSS and JavaScript: Comparing Web Technologies Apr 23, 2025 am 12:05 AM

    HTML, CSS and JavaScript are the core technologies for building modern web pages: 1. HTML defines the web page structure, 2. CSS is responsible for the appearance of the web page, 3. JavaScript provides web page dynamics and interactivity, and they work together to create a website with a good user experience.

    HTML: Is It a Programming Language or Something Else? HTML: Is It a Programming Language or Something Else? Apr 15, 2025 am 12:13 AM

    HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

    From Text to Websites: The Power of HTML From Text to Websites: The Power of HTML Apr 13, 2025 am 12:07 AM

    HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

    See all articles