时间:2021-05-26
废话不多说了,直接上代码吧!
//给图片添加删除 function mouseChange() { $(document).on("mouseenter mouseleave", ".file-iteme", function (event) { if (event.type === "mouseenter") { //鼠标悬浮 $(this).children(".info").fadeIn("fast"); $(this).children(".handle").fadeIn("fast"); } else if (event.type === "mouseleave") { //鼠标离开 $(this).children(".info").hide(); $(this).children(".handle").hide(); } }); } mouseChange(); //json的length function getJsonLength(jsonData){ var jsonLength = 0; for(var item in jsonData){ jsonLength++; } return jsonLength; } //多图片上传 var ImgList = $('#uploader-list'),uploadListIns =upload.render({ elem: '#chooseImg', url: $("#projectUrl").val()+ '/img/imgUpload.do', accept: 'images', acceptMime: 'image/jpg,image/png,image/jpeg', exts: 'jpg|png|jpeg', size: 1024, multiple: true, auto: true, choose: function(obj){ var files = obj.pushFile(); //将每次选择的文件追加到文件队列 var len = getJsonLength(files); //读取本地文件 obj.preview(function (index, file, result) { if (parseInt(len)+parseInt(coachPicsArray.length)-count > 6){ layer.msg("门店图片不能超过6张"); //遍历 $.each(files,function(_key){ var key = _key; var value = files[_key]; if(_key == index) { //删除 delete files[_key]; } }); }else { var reader = new FileReader(); reader.onload = function (e) { var image = new Image(); image.onload = function () { var realWidth = image.width; var realHeight = image.height; var tr = $(['<div id="upload-' + index + '" class="file-iteme">' + '<div class="removeIcon handle"> <i class="layui-icon" style="color: white ;margin-right: 40%"></i></div>' + '<img style="color: white;width: 120px" "showBig(this)" src=' + result + ' id="img-' + index + '">' + '</div>'].join('')); //删除 tr.find('.handle').on('click', function () { $(this).parent().remove(); delete files[index]; //删除对应的文件 var value = $("#clubCoachPics").val().split(","); var arr = []; for( var i in value){ if (value[i] != $(this).next().data('value')){ arr.push(value[i]); } } $("#clubCoachPics").val(arr.join(",")) ; }); ImgList.append(tr); }; image.src = result; }; //正式读取文件 reader.readAsDataURL(file); } }); }, before: function (obj) { layer.msg('图片上传中...', { icon: 16, shade: 0.01, time: 3000 }) }, done: function (res, index, upload) { $("#img-"+ index + "").attr("data-value",res.imgUrl); if(res.code == 0){ //上传成功 var imgUrl = $("#clubCoachPics").val(); if(imgUrl==null||imgUrl==""){ $("#clubCoachPics").val(res.imgUrl); }else{ $("#clubCoachPics").val(imgUrl+","+res.imgUrl); } delete files[index]; //删除文件队列已经上传成功的文件 return; }; } });以上这篇layui实现多图片上传并限制上传的图片数量就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
php结合layui前端实现多图上传前端html代码请选择图片文件名图片预览大小状态操作开始上传js代码layui.use('upload',function(
本文实例讲述了PHP结合jqueryajax实现上传多张图片,并限制图片大小操作。分享给大家供大家参考,具体如下:php用jquery-ajax上传多张图片限制
本文所述为一个实用的PHP多图片文件上传类,其支持gif、jpg、jpeg、pjpeg、png格式的多图片上传功能,类中还可限制图片类型、上传图片的大小、设置上
有哪些模块支持上传图片并设置链接?目前图片、图文展示、列表多图、轮播多图、魔方多图模块都支持上传图片并设置链接。支持设置哪种类型的链接?一、在图片模块添加图片并
本文实例为大家分享了JavaScript实现单图片上传并预览功能的具体代码,供大家参考,具体内容如下单图片上传并实现预览.addPerson{l