search
HomeWeb Front-endHTML TutorialDetailed explanation of HTML Form form elements

Detailed explanation of HTML Form form elements

Jan 20, 2018 am 09:51 AM
formhtmlDetailed explanation

This time I will bring you a detailed explanation of the HTML Form form elements. What are the precautions when using the HTML Form form elements. The following is a practical case, let's take a look.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  
<html xmlns="http://www.w3.org/1999/xhtml">  
<head>  
    <title>注册表单</title>  
</head>  
<body>  
    <form action="DoFormAction.htm">  
        <fieldset style="width=800px">                                                              <!--套住注册表格的边框-->  
        <legend>请输入如下的信息然后进行注册</legend>  
        <table cellspacing="0px" cellpadding="6px" border="1px" bordercolor="black" align="center" width="600px">  
            <tr>  
                <td align="right">用户名:</td>                                   <!--文本框-->  
                <td><input type="text" size="20" style="width:150px" /></td>  
            </tr>  
            <tr>  
                <td align="right">密码:</td>                                     <!--密码框-->  
                <td><input type="password" size="20" style="width:150px" /></td>  
            </tr>  
            <tr>  
                <td align="right">确认密码:</td>  
                <td><input type="password" size="20" style="width:150px" /></td>  
            </tr>  
            <tr>  
                <td align="right">性别:</td>                                      <!--单选框-->  
                <td>  
                    <input type="radio" checked="checked" name="sex1" value="男" />男    
                    <input type="radio" name="sex1" value="女" />女   
                </td>  
            </tr>  
            <tr>  
                <td align="right">性别(可以点文字选择):</td>  
                <td>  
                    <fieldset style="width:150px">                              <!--表单外框,也可以通过css设置宽度-->  
                    <legend>请选择性别</legend>  
                        <input type="radio" checked="checked" name="sex2" value="男" id="man" />  
                        <label for="man">男</label>  
                        <input type="radio" name="sex2" value="女" id="woman" />  
                        <label for="woman">女</label>  
                    </fieldset>  
                </td>  
            </tr>  
            <tr>  
                <td align="right">城市:</td>                                    <!--下拉框-->  
                <td>  
                    <select name="city">  
                        <option value="北京">北京</option>  
                        <option value="深圳">深圳</option>  
                        <option value="上海">上海</option>  
                        <option value="南昌" selected="selected">南昌</option>  <!--默认选择南昌-->  
                    </select>  
                </td>  
            </tr>  
            <tr>  
                <td align="right">城市所在区域:</td>  
                <td>  
                    <select name="area">            
                        <optgroup label="北京">                                <!--下拉框分组显示-->  
                            <option value="朝阳区">朝阳区</option>  
                            <option value="海淀区">海淀区</option>  
                            <option value="其他区">其他区</option>  
                        </optgroup>  
                        <optgroup label="南昌">  
                            <option value="东湖区">东湖区</option>  
                            <option value="西湖区">西湖区</option>  
                            <option value="青山湖区">青山湖区</option>                               
                        </optgroup>  
                    </select>  
                </td>  
            </tr>  
            <tr>  
                <td align="right">交友目标:</td>  
                <td>  
                    <select name="target" size="3" multiple="multiple">        <!--列表框-->         
                        <option value="同行" selected="selected">同行</option>  
                        <option value="普通朋友">普通朋友</option>  
                        <option value="爱人">爱人</option>  
                    </select>  
                </td>  
            </tr>  
            <tr>  
                <td align="right">爱好:</td>  
                <td>  
                                                                            <!--复选框,注意name属性设置一样,分组-->      
                    <input type="checkbox" name="love" value="足球" />足球   
                    <input type="checkbox" name="love" value="蓝球" />蓝球   
                    <input type="checkbox" name="love" value="乒乓球" />乒乓球   
                </td>  
            </tr>  
            <tr>  
                <td align="right">照片上传:</td>  
                <td>  
                                                                            <!--文件选择框-->      
                    <input type="file" name="myPic" />  
                </td>  
            </tr>  
            <tr>  
                <td align="right">自我介绍:</td>  
                <td>  
                                                                            <!--多行文本框-->      
                    <textarea rows="5" cols="50">  
                    </textarea>  
                </td>  
            </tr>  
            <tr>  
                <td align="center" colspan="2">  
                    <input type="submit" value="确定" />  
                    <input type="reset" value="清空" />                       
                    <input type="image" src="../images/btnreg.png" onclick="alert(&#39;hello&#39;)" />      <!--演示图片按钮(会提交数据,类似submit)  
                                                                                                    -->  
                </td>  
            </tr>  
        </table>  
        </fieldset>  
    </form>  
</body>  
</html>

I believe you have mastered the methods after reading these cases. For more exciting information, please pay attention to other related articles on the php Chinese website!

Related reading:

How to use h5’s sse server to send EventSource events

H5’s local storage and local database details Introducing

#h5 how to implement the remember password function

The above is the detailed content of Detailed explanation of HTML Form form elements. 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
What is the difference between an HTML tag and an HTML attribute?What is the difference between an HTML tag and an HTML attribute?May 14, 2025 am 12:01 AM

HTMLtagsdefinethestructureofawebpage,whileattributesaddfunctionalityanddetails.1)Tagslike,,andoutlinethecontent'splacement.2)Attributessuchassrc,class,andstyleenhancetagsbyspecifyingimagesources,styling,andmore,improvingfunctionalityandappearance.

The Future of HTML: Evolution and TrendsThe Future of HTML: Evolution and TrendsMay 13, 2025 am 12:01 AM

The future of HTML will develop in a more semantic, functional and modular direction. 1) Semanticization will make the tag describe the content more clearly, improving SEO and barrier-free access. 2) Functionalization will introduce new elements and attributes to meet user needs. 3) Modularity will support component development and improve code reusability.

Why are HTML attributes important for web development?Why are HTML attributes important for web development?May 12, 2025 am 12:01 AM

HTMLattributesarecrucialinwebdevelopmentforcontrollingbehavior,appearance,andfunctionality.Theyenhanceinteractivity,accessibility,andSEO.Forexample,thesrcattributeintagsimpactsSEO,whileonclickintagsaddsinteractivity.Touseattributeseffectively:1)Usese

What is the purpose of the alt attribute? Why is it important?What is the purpose of the alt attribute? Why is it important?May 11, 2025 am 12:01 AM

The alt attribute is an important part of the tag in HTML and is used to provide alternative text for images. 1. When the image cannot be loaded, the text in the alt attribute will be displayed to improve the user experience. 2. Screen readers use the alt attribute to help visually impaired users understand the content of the picture. 3. Search engines index text in the alt attribute to improve the SEO ranking of web pages.

HTML, CSS, and JavaScript: Examples and Practical ApplicationsHTML, CSS, and JavaScript: Examples and Practical ApplicationsMay 09, 2025 am 12:01 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML is used to build web page structure; 2. CSS is used to beautify the appearance of web pages; 3. JavaScript is used to achieve dynamic interaction. Through tags, styles and scripts, these three together build the core functions of modern web pages.

How do you set the lang attribute on the  tag? Why is this important?How do you set the lang attribute on the tag? Why is this important?May 08, 2025 am 12:03 AM

Setting the lang attributes of a tag is a key step in optimizing web accessibility and SEO. 1) Set the lang attribute in the tag, such as. 2) In multilingual content, set lang attributes for different language parts, such as. 3) Use language codes that comply with ISO639-1 standards, such as "en", "fr", "zh", etc. Correctly setting the lang attribute can improve the accessibility of web pages and search engine rankings.

What is the purpose of HTML attributes?What is the purpose of HTML attributes?May 07, 2025 am 12:01 AM

HTMLattributesareessentialforenhancingwebelements'functionalityandappearance.Theyaddinformationtodefinebehavior,appearance,andinteraction,makingwebsitesinteractive,responsive,andvisuallyappealing.Attributeslikesrc,href,class,type,anddisabledtransform

How do you create a list in HTML?How do you create a list in HTML?May 06, 2025 am 12:01 AM

TocreatealistinHTML,useforunorderedlistsandfororderedlists:1)Forunorderedlists,wrapitemsinanduseforeachitem,renderingasabulletedlist.2)Fororderedlists,useandfornumberedlists,customizablewiththetypeattributefordifferentnumberingstyles.

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 Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment