真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用layui怎么實現(xiàn)一個多圖片上傳功能

這篇文章給大家介紹使用layui怎么實現(xiàn)一個多圖片上傳功能,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

創(chuàng)新互聯(lián)建站專注于惠州企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計,成都商城網(wǎng)站開發(fā)。惠州網(wǎng)站建設(shè)公司,為惠州等地區(qū)提供建站服務(wù)。全流程按需制作網(wǎng)站,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)

//給圖片添加刪除
    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 = $(['' +
                ' 
' +                 '' +                 '
'].join(''));                   //刪除                 tr.find('.handle').on('click', function () {                   $(this).parent().remove();                   delete files[index]; //刪除對應(yīng)的文件                   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]; //刪除文件隊列已經(jīng)上傳成功的文件           return;         };         }     });

關(guān)于使用layui怎么實現(xiàn)一個多圖片上傳功能就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


本文題目:使用layui怎么實現(xiàn)一個多圖片上傳功能
分享路徑:http://weahome.cn/article/ppshoi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部