首页 > 代码库 > HTML学习之表单

HTML学习之表单

HTML表单

表单是HTML的一个重要部分,主要用于采集和提交用户输入的信息。

<form   name=“f1”     action=“处理表单用的URL”       method=“get或post” >

</form>

  1、name:   设置表单的名称。

  2、action:  设置表单的处理程序的URL。

  3、method:提交表单的方法。


HTML    表单中常用的标记:

输入域<input>一般在表单中使用

1、<inputtype=“text” />输入单行文字

2、<inputtype=“password”/>输入密码

3、<inputtype=“radio” />单选按钮

4、<inputtype=“checkbox” />多选按钮

5、<inputtype=“image” />图片

6、<inputtype=“file” />文件上传

7、<inputtype=“hidden” />隐藏域

8、<inputtype=“reset” />撤销按钮

9、<inputtype="submit" />提交按钮

10、<inputtype=“button” />普通按钮


11、多行文本输入标记<textarea>

<textarea name=“t1”,rows=x,cols=x>…

</textarea>

 name 设置识别名称。

 rows设置文本域的行数

 cols设置文本域的列数

 disabled设置文本为禁用

 warp 设置为off不换行



12、选择域<select>

   <select name=selectname>

   <option selected>选项一</option>

   < option >选项二</option>

  ……

  </select>


<!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    </head>
    <body >
   <marquee direction="right" behavior="alternate" bgcolor="#3333FF">
   hello,great boy.......  
   </marquee>   
   <hr>
   <form>
   	输入单行文字 <input type="text" /><br>
   	输入密码     <input type="password" /><br>
   	单选按钮     <input type="radio" name="abc" />  <input type="radio"  name="abc" /> <br>
   	多选按钮     <input type="checkbox"  name="ab"/><input type="checkbox" name="ab"/> <br>
   	图片域       <input type="image" src=http://www.mamicode.com/"29.gif" />
>

HTML表单提交数据:html提交数据时必须设置<input>标签name和value属性,以便asp程序能获取相应的值。

<!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    </head>
    <body >
     <form  name="form1" action="request.asp" method="post">
     <p>
     请输入用户名: <input name="name" type="text" size="10"  maxlength="7" />
     <br>
     
     请输入密码:
     <input  name="password" type="password" size="10" maxlength="6"/>
     <br>
     选择强项:<br>
     体育<input type="checkbox"  name="ck"   value=http://www.mamicode.com/"体育" />>




HTML学习之表单