码迷,mamicode.com
首页 > Web开发 > 详细

HTML

时间:2017-02-23 14:34:56      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:html   from   

<form> 标签用于创建 HTML 表单。

表单能够包含 input 元素,比如文本字段、复选框、单选框、提交按钮等等。

表单还可以包含 menus、textarea、fieldset和 label 元素 等。



action {URL}:一个URL地址;指定form表单向何处发送数据。

enctype {string}:规定在发送表单数据之前,如何对表单数据进行编码。

指定的值有:application/x-www-form-urlencoded :在发送前编码所有字符(默认为此方式);

      multipart/form-data :不对字符编码。使用包含文件上传控件的表单时,必须使用该值

method {get/post}:指定表单以何种方式发送到指定的页面。

指定的值有:get :form表单里所填的值,附加在action指定的URL后面,做为URL链接而传递。

      post :form表单里所填的值,附加在HTML Headers上。


<!DOCTYPE HTML>

<HTML>

<HEAD>

<META CHARSET="gbk2312">

<title>表单</title>

</HEAD>

<body>

<form enctype="multipart/form-data" action="ashx/login.ashx" method="post">

    <table>

        <tr>

            <td><label for="txtname">账号:</label></td>

            <td><input type="text" id="txtname" name="login_username" /></td>

        </tr>

        <tr>

            <td><label for="txtpswd">密码:</label></td>

            <td><input type="password" id="txtpswd" name="login_pswd" /></td>

        </tr>

        <tr>

            <td colspan=2>

                <input type="reset" value="重置"/>

                <input type="submit" value="提交" />

            </td>

        </tr>

    </table>

</form> 

</body>

</HTML>


HTML

标签:html   from   

原文地址:http://2732951.blog.51cto.com/2722951/1900371

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!