Blogger Information
Blog 4
fans 0
comment 0
visits 5297
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表单
计算机的博客
Original
665 people have browsed it

表单

<form></form>
<input type="text/password" name="名称" value="文本">
action 
method  post/get


输入框语法:
<form>
  <input type="text/password" name="名称" value="文本" />
</form>

1、type:

  当type="text"时,输入框为文本输入框;

  当type="password"时, 输入框为密码输入框。

2、name:为文本框命名,以备后台程序ASP 、PHP使用。

3、value:为文本输入框设置默认值。(一般起到提示作用)

<textarea row="" cols="">
</textarea>

下拉列表在网页中也常会用到,它可以有效的节省网页空间。既可以单选、又可以多选。如下代码:

在表单中有两种按钮可以使用,分别为:提交按钮、重置。这一小节讲解提交按钮:当用户需要提交表单信息到服务器时,需要用到提交按钮。

语法:
<input   type="submit"   value="提交">
type:只有当type值设置为submit时,按钮才有提交作用 
value:按钮上显示的文字

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post