html表单

1.语法:

                  表单元素

       

表单本身不可见

表单元素有文本域,单选框,复选框,按钮,列表等

form标签中,以下标签实现单元素添加

表单输入标签

14表单页面调整

form标签

form属性

action    url      提交时向何处发送

method  get.post  何种形式发送

name  form_name  表单名称

target  _blank,._self,_parent  在何处打开action url

enctype .application/x_www_form_urlencoded

multipart/form_data

text/plain

在发送表单数据之前如何对其进行编码

14get post

get

使用url传递参数

对发送信息的数量有限制

一般用于信息获取保密性差

post

表单数据作为http请求体一部分

对发送信息的数量无限制

一般用于修改服务器上的资源保密性好










     


 

你可能感兴趣的:(html表单)