ajaxFileUpload无刷新文件上传

前端之家收集整理的这篇文章主要介绍了ajaxFileUpload无刷新文件上传前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

ajaxFileUpload 是个插件,当时好像是在PHP的官网上下载的,包含例子

前端代码
<input id="FileUpload" type="file" name="FileUpload" />
<input id="upload" type="button" value="upload" />

前端脚本:
$.ajaxFileUpload
(
{
url:'../ajax/kecheng_ajax.aspx?type=upload',//你处理上传文件页面,注意每个参数中间使用逗号。
secureuri:false,
fileElementId:'FileUpload',
dataType: 'json',
success: function (data,status)
{
alert("data="+data+",status="+status);
},
error:function(data,status,e)
{
alert("上传失败,请重试!");
}
}
);

后台代码
Response.ContentType = "text/html";
string filename = Request.Files[0].FileName;
int index = filename.LastIndexOf('\\');
filename = filename.Substring(index + 1);
string path = Server.MapPath("../Upload/");
Request.Files[0].SaveAs(path + filename);
Response.Write("['上传ok']");
//使用json的方式输出

插件源码:http://download.csdn.net/detail/wangxingguo1218/5905867

遗憾的是此插件支持文件上传,多文件需要打包,好像html5 input已经支持文件了,都是技术,不会了就学习呗

原文链接:https://www.f2er.com/ajax/165971.html

猜你在找的Ajax相关文章