skip to main
|
skip to sidebar
IT Share 4 U
Thursday, December 3, 2009
HTML教程<form>
这次来谈谈form的用处。
form可以用来让用户填写资料,然后submit到server去被process。
来看看一个form的例子:
Name:
Email:
Gender:
Male
Female
Favourite:
eforum
cforum
form里头通常会有textbox,checkbox,radio button,textarea,submit button等等。
这里将个别简单讨论。
<form>所支援的attribute:
action——设定form被submit的目标URL。
method——设定form被submit时所用的方式,可以是get或post。(post比较保安)
name——设定form的名字,以方便form内的数据被参考。
一个真正能用的form,必须具备以上三个attribute。
id——设定独特的id让JavaScript辨别。
class——设定class的名称,通常用在CSS。
style——设定element里的inline style,用于CSS。
<input>的使用
要在form里加入textbox,可以这样写:
<input type="text" name="firstname" value="type here"/>
你可以加入value attribute来设定textbox里的字串。
要在form里加入radio button,可以这样写:
<input type="radio" name="gender" value="male"/>Male
name可用来把radio button group起来。
要在form里加入checkbox,可以这样写:
<input type="checkbox" name="vehicle" value="Car"/>
name可用来把checkbox group起来。
form里一定要有submit的button,这样写:
<input type="submit" value="Send"/>
**
form也可以加入让用户键入文字的textarea,这样写:
<textarea name="text1" rows="5" cols="50">type text here</textarea>
你可以加入readonly来设定textarea只供读取而已。
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Current Time
Total Hits
Forums
UCpro
Blogs/Sites
Seng's Blog
Followers
Blog Archive
▼
2009
(32)
▼
December
(5)
HTML教程——object和embed
什么是Small Basic?
HTML教程——frameset和frame
HTML教程——map和area
HTML教程<form>
►
November
(27)
Labels
CSS教程
(1)
Flash教程
(4)
Future Technology
(1)
HTML教程
(15)
JavaScript教程
(1)
Processor
(1)
VB教程
(1)
其它分享
(3)
电脑常识
(2)
电脑编程
(1)
软件分享
(2)
About The Author
Arcus Tiong
View my complete profile
No comments:
Post a Comment