- 1、本文档共55页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
[互联网]HTML语法
1. 表单(FORM)标记(TAGS)
基本语法
表单的基本语法
form action=url method=*... ... input type=submit input type=reset/form
*=GET, POST
表单中提供给用户的输入形式
input type=* name=**
*=text, password, checkbox, radio, image, hidden, submit, reset
**=Symbolic Name for CGI script
文字输入和密码输入
*=text, password
input type=*input type=* value=**
form action=/cgi-bin/post-query method=POST
您的姓名:
input type=text name=姓名br
您的主页的网址:
input type=text name=网址 value=http://br
密码:
input type=password name=密码br
input type=submit value=发送input type=reset value=重设
/form
窗体顶端
您的姓名: 您的主页的网址: 密码:
窗体底端
input type=* size=**input type=* maxlength=**
form action=/cgi-bin/post-query method=POST
input type=text name=a01 size=40br
input type=text name=a02 maxlength=5br
input type=submitinput type=reset
/form
复选框(Checkbox) 和 单选框(RadioButton)
input type=checkboxinput type=checkbox checkedinput type=checkbox value=**
form action=/cgi-bin/post-query method=POST
input type=checkbox name=水果1
Bananap
input type=checkbox name=水果2 checked
Applep
input type=checkbox name=水果3 value=橘子
Orangep
input type=submitinput type=reset
/form
RadioButton
窗体底端
input type=radio value=**input type=radio value=** checked
form action=/cgi-bin/post-query method=POST
input type=radio name=水果
Bananap
input type=radio name=水果 checked
Applep
input type=radio name=水果 value=橘子
Orangep
input type=submitinput type=reset
/form
4. 图象坐标
在下面选则一个系数后,在图象上点一下,就知道什么是图象坐标了!
input type=image src=url
form action=/cgi-bin/post-query method=POST
input type=image name=face src=f.gifp
input type=radio name=zoom value=2 checkedx2
input type=radio name=zoom value=4x4
input type=radio name=zoom value=6x6p
input type=reset
/form
窗体顶端
x2 x4 x6
窗体底端
隐藏表单的元素
input type=hidden value=*
form action=/cgi-bin/post-query method=POST
input type=hidden name=add value=hoge@hoge.jp
Here is a hidden element. p
input type=submitinput type=reset
/form
窗体顶端
Here is a hidden element.
窗体底端
列表框(Selectable Menu)
基本语法
select name=*opt
文档评论(0)