jquery异步提交表单后怎么获取数据

2025-01-05 15:47:12
推荐回答(5个)
回答1:

aspx.cs代码:

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.IO;

namespace WebUI
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}

protected void btnUpload_Click(object sender, EventArgs e)
{
try
{
HttpFileCollection hfc = Request.Files;
for (int i = 0; i < hfc.Count; i++)
{
HttpPostedFile hpf = hfc[i];
if (hpf.ContentLength > 0)
{
hpf.SaveAs(Server.MapPath("Upload") + "\\" + Path.GetFileName(hpf.FileName));
}
}
}
catch (Exception ex)
{
Response.Write(ex);
}
}
}
}

写在后面:
1、如果你每次上传的文件总大小超过了4MB,需要修改Web.config文件,在节点中设置maxRequestLength属性的值,单位为KB。
2、要给服务器上接收上传文件的目录赋予能写文件的权限,本例为Upload目录。

回答2:

你把php接收到的数据,再返回就可以了,echo 或者exit,die都可以。

$.ajax({
type: "POST",
url: "some.php",
data: "name=John&location=Boston",
success: function(result){
alert( result );//这里的result 就是从你的php页面里返回的数据
}
});

回答3:


这句写在最开头

把这句写到标记里

回答4:

$(":file").val()就可以得到file标签的值。

回答5:

这里有一个多文件上传系统
你可以看看这里是怎样获取的