帮我做post 网页源 ?<form action="upload.php" method 25

帮我做post网页源?<formaction="upload.php"method="post"enctype="multipart/form-data"><inputt... 帮我做post

网页源 ?<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="myfile" />
<input type="submit" name="submit" value="上传" />
</form>
展开
 我来答
衔鲁1
2016-06-02 · TA获得超过1036个赞
知道大有可为答主
回答量:1777
采纳率:16%
帮助的人:550万
展开全部
一般情况下,使用Ajax提交的参数多是些简单的字符串,可以直接使用GET方法将要提交的参数写到open方法的url参数中,此时send方法的参数为null。例如 :!--[if !supportLists]-->1 !--[endif]-->var url = login.jsp?user=XXX&pwd=XXX;!--[if !supportLists]-->2 !--[endif]-->xmlHttpRequest.open(GET,url,true);!--[if !supportLists]-->3 !--[endif]-->xmlHttpRequset.send(null);
此外,也可以使用send方法传递参数。使用send方法传递参数使用的是POST方法,需要设定Content-Type头信息,模拟HTTP POST方法发送一个表单,这样服务器才会知道如何处理上传的内容。参数的提交格式和GET方法中url的写法一样。设置头信息前必须先调用open方 法。 例如:!--[if !supportLists]-->1 !--[endif]-->xmlHttpRequest.open(POST,login.jsp,true);!--[if !supportLists]-->2 !--[endif]-->xmlHttpRequest.setRequestHeder(Content-Type,application/x--form-urlencoded;charset=UTF-8);!--[if !supportLists]-->3 !--[endif]-->xmlHttpRequest.send(user=+username+&pwd=+password);
需要注意的是根据提交方式的不同,两种提交方式分别调用后台的doGet方法和doPost方法。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式