第一句<form id="form1" name="form1" method="post" action="">在这...
发布网友
发布时间:2024-05-15 14:48
我来回答
共2个回答
热心网友
时间:2024-05-31 19:18
form是表单,只有当你把数据包含在form表单中你的button是submit类型的时候,你点击提交了,
method="post" action=""
method你使用post方式,就是你发送的数据就不会在网址体现出来而直接发送到服务端上,然后你的action是提交动作,也就是你提交过去的页面,比如我写action=test.asp,,那么我在test页面使用request就可以获取你提交过来的所有数据
textfield = request("textfield")
passwordfield = request("passwordfield")
......
selectlist = request("selectlist")
我们就能对获取的数据进行其他加工处理,比如我要写入表啊,我要做其他判断等等
热心网友
时间:2024-05-31 19:14
所有的这些控件都在 这个id为“form1” name为“form1”的表单(form)中
这个表单提交数据的方式 method 是 “post” (提交数据一般有“get”和“post”)
action 提交的地址 为“” 就是将这些数据提交给谁来处理
给你推荐个网站吧 http://www.w3school.com.cn/ 一些网页基础知识