uploadify上传图片(限制最多五张)
项目中遇到图片上传的情况,好多都是使用服务器上传控件进行上传的,很是不爽.
然后在网上找到了uploadify的方法,自己总结和修改后分享给大家.
项目文档预览:

1.引用原有css和js
<link href="../css/bootstrap.min.css" rel="stylesheet" />
<link href="../css/bootstrap-responsive.min.css" rel="stylesheet" />
<script src="../uploadify/jquery-1.4.1.min.js"></script>
<link href="../uploadify/uploadify.css" rel="stylesheet" />
5 <script src="../uploadify/jquery.uploadify.min.js"></script>
2.HTML代码:
<div class="img_setting">
<div class="pic_demo">
</div>
<div class="upload_style">
<input type="file" name="upload_file" id="upload_file" />
</div>
7 </div>
3.为HTML代码添加样式
1 <style>
2 .uploadify-queue {
3 display: none;
4 }
5
6 .img_setting {
7 margin: auto;
8 padding: 2px;
9 }
.pic_demo {
margin: auto;
padding: 10px;
float: left;
}
.upload_style {
padding: 10px;
margin: ;
}
.imgBox {
display: inline;
display: inline-block;
padding: ;
position: relative;
margin: 10px 10px ;
line-height: 120px;
background-color: #c2c2c2;
}
.imgBox p {
height: auto;
display: none;
position: absolute;
left: ;
bottom: ;
}
.imgBox input {
line-height: 14px;
float: left;
font-size: 12px;
width: 20px;
}
.imgBox img {
width: 130px;
max-height: 130px;
vertical-align: middle;
}
.imgBox .editImg {
position: absolute;
left: ;
top: ;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
display: none;
border: 1px solid #c2c2c2;
background-color: #fff;
font-size: 20px;
}
.imgBox .delImg {
position: absolute;
right: ;
top: ;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
display: none;
border: 1px solid #c2c2c2;
background-color: #fff;
font-size: 20px;
}
80 </style>
4.配置js:
1 <script>
2 $(function () {
3 var file_count = ;
4 var num = ;
5 $("#upload_file").uploadify({
6 'swf': '../uploadify/uploadify.swf',//指定swf文件
7 'uploader': '../uploadify/uploadifyUpload.ashx',//调取后台处理方法
8 'folder': '../UploadFiles/images',//图片保存路径
9 'fileTypeExts': '*.gif; *.jpg; *.png',//文件上传类型后缀,不符合时有提醒
'fileSizeLimit': "2MB",//上传文件大小限制数
'auto': true,//选择后自动上传,默认值为true
'multi': false,//设置上传时是否可以选择多个,true可以,false禁止选中多个
'method': 'post',//提交方式(get或者post),默认是post
//'buttonText': '选择文件',
'buttonImage': '../uploadify/image/add.png',
'width': '128px',
'height': '128px',
'removeCompleted': true,
'removeTimeout': ,
'uploadLimit': ,//允许连续上传的次数,超过会提示
'onUploadSuccess': function (file, data, respone) {
var arr = data.split('|');
var chgDisplay = $('.pic_demo');//div类名
picDispaly({
div: chgDisplay,
url: arr[]
});
function picDispaly(obj) {
var img = new Image();
img.src = "../UploadFiles/images/" + obj.url;
$(img).attr("data-url", obj.url);
var imgList = $('<div class="imgBox"><span class="editImg"><i class="icon icon-edit"></i></span><span class="delImg">×</span><p class="imgInfo"><input type="text" name="imgIndex" class="imgIndex" value="' + num + '" /></p></div>');
num += ;
file_count += ;
imgList.append(img);
$(obj.div).append(imgList);
}
chgDisplay.find('.imgBox').mouseenter(function (e) {
$(this).find('.delImg,.editImg').show();
}).mouseleave(function (e) {
$(this).find('.delImg,.editImg,.imgInfo').hide();
});
chgDisplay.find('.editImg').click(function (e) {
$(this).parent().find('.imgInfo').show();
});
chgDisplay.find('.delImg').click(function (e) {
$(this).parent().remove();
file_count -= ;
if (file_count <= ) {
$('#upload_file').show();
}
});
if (file_count > ) {
$('#upload_file').hide();
}
},
'onCancel': function (event, queueId, fileObj, data) {
},
'onUploadError': function (file, errorCode, errorMsg, errorString) {
}
});
});
67 </script>
5.原有的jquery.uploadify.min.js中略微有些修改:

6.一般处理程序uploadifyUpload.ashx:
1 public class uploadifyUpload : IHttpHandler {
2
3 public void ProcessRequest(HttpContext context)
4 {
5 context.Response.ContentType = "text/plain";
6 context.Response.Charset = "utf-8";
7 HttpFileCollection file = HttpContext.Current.Request.Files;
8 string result = "";
9 string uploadPath = context.Server.MapPath("../UploadFiles/images"+"\\");
if (file != null)
{
try
{
if (!System.IO.Directory.Exists(uploadPath))
{
System.IO.Directory.CreateDirectory(uploadPath);
}
DateTime dtnow = System.DateTime.Now;
string filename = dtnow.Year.ToString() + dtnow.Month.ToString() + dtnow.Day.ToString() + dtnow.Hour.ToString() + dtnow.Minute.ToString() + dtnow.Second.ToString() + dtnow.Millisecond.ToString();
string ExtName = getFileExt(file[].FileName).ToUpper();
filename += "." + ExtName;
file[].SaveAs(uploadPath + filename);
result = "1|" + filename + "";
}
catch
{
result = "0|";
}
}
else
{
result = "0|";
}
context.Response.Write(result); //标志位1标识上传成功,后面的可以返回前台的参数,比如上传后的路径等,中间使用|隔开
}
private string getFileExt(string fileName)
{
if (fileName.IndexOf(".") == -)
return "";
string[] temp = fileName.Split('.');
return temp[temp.Length - ].ToLower();
}
public bool IsReusable {
get {
return false;
}
}
51 }
6成果:


uploadify上传图片(限制最多五张)的更多相关文章
- 调试台自动多出现一个'' ,我 用uploadify上传图片时,在给页面写入一个返回值为图片名称的变量的值的时候值的前面始终多出现一个''
对你有助请点赞,请顶,不好请踩------送人玫瑰,手留余香! 15:54 2016/3/12用uploadify上传图片时,在给页面写入一个返回值为图片名称的变量的值的时候值的前面始终多出现一个' ...
- MVC中使用jquery uploadify上传图片报302错误
使用jquery uploadify上传图片报302错误研究了半天,发现我上传的action中有根据session判断用户是否登录,如果没有登录就跳到登陆页,所以就出现了302跳转错误.原来更新了fl ...
- MVC 中使用uploadify上传图片遇到的蛋疼问题
MVC 中使用uploadify上传图片遇到的蛋疼问题 初次使用uploadify上传图片,遇到了一些比较纠结的问题,在这里和大家分享下,有不对的地方还望大神多多指教,希望对刚接触的朋友有所帮助,文采 ...
- 五张图概括 什么是 ASP 、 ASP.NET (Web Pages,Web Forms ,MVC )
当你看懂下面这五张图,我相信你对于学习.NET Web开发路线将不陌生! 来源: http://www.w3 ...
- uploadify上传图片的使用
一:引用jquery.uploadify.js 二:代码 <body> <table> <tr> <td style="width: 15%; te ...
- uploadify上传图片
1.实现源代码 <%@ page language="java" import="java.util.*" pageEncoding="UTF- ...
- ASP.NET-权限管理五张表
ASP.NET 权限管理五张表 权限管理的表(5张表) 每个表里面必有的一些信息 序号 名称 字段 类型 主键 默认值 是否为空 备注 1 用户ID ID INT 是 ...
- uploadify上传图片的类型错误的解决办法
大家在做开发的过程中,相信很多人都会使用到uploadify插件来上传图片,但是这个插件也有不完美的地方. 我曾多次遇到过这样一个问题:上传的图片类型明明是没有问题的,但是在上传的时候总是会报错:图片 ...
- 使用uploadify上传图片时返回“Cannot read property 'queueData' of undefined”
在使用uploadify插件上传图片时,遇到一个比较坑的错误:上传时提示“Cannot read property 'queueData' of undefined”. 遇到这个问题有点无语,因为这个 ...
随机推荐
- MySQL主从同步原理 部署【转】
一.主从的作用:1.可以当做一种备份方式2.用来实现读写分离,缓解一个数据库的压力二.MySQL主从备份原理master 上提供binlog ,slave 通过 I/O线程从 master拿取 bin ...
- 今天收到报警邮件,提示网站502 bad gateway,
今天收到报警邮件,提示网站502 bad gateway, 输入网站url后果然无法打开: 登录服务器查看nginx进程正常: 查看fastcGI进程已经停止运行了: 问题找到后就该查找是什么原因产生 ...
- IE6下解决select层级高的问题
div在IE6下无法遮盖select,原因是在IE6下,浏览器将select元素视为窗口级元素,这时div或者其它的普通元素无论z-index设置的多高都是无法遮住select元素的. 解决方法有三种 ...
- Groovy 数组操作
将字符串转为map def str="['汤菜':['1000000028','1000000030'],'肉菜':['1000000032'],'素材':['1000000031']]&q ...
- Python socket编程应用
最近因为考试各种复习顺便刷电视剧,感觉跟小伙伴玩的越来越不开心了,一定是最近太闲了,恩.于是想研究一下代理服务器,下载了一份代码,发现竟然还涉及到socket编程,所以把之前网络课的socket聊天室 ...
- html+css篇
一,html语义话标签 http://www.html5jscss.com/html5-semantics-section.html
- iOS 之 多线程一
iOS中实现多线程的技术方案 pthread 实现多线程操作 代码实现: void * run(void *param) { for (NSInteger i = 0; i < 1000; ...
- CocoaPods安装和使用及问题:Setting up CocoaPods master repo-b
目录 CocoaPods是什么? 如何下载和安装CocoaPods? 如何使用CocoaPods? 场景1:利用CocoaPods,在项目中导入AFNetworking类库 场景2:如何正确编译运行一 ...
- 蓝牙音箱bose soundlink mini2链接mac后itunes自动启动的问题解决
1.在应用程序列表中复制一个应用重命名为DoNothingApp.app(非系统应用才可以成功复制) 2.打开terminal执行该命令(执行后需要输入密码),注意mv和iTunes.app后分别有一 ...
- JQuery为元素添加样式
由于jquery支持css3,所有能很好的兼容很多浏览器,所以通过jquery来使用css样式比较好 为定义好的css样式可以调用元素的css方法添加样式 $("span").cs ...