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

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

HTML5中怎么實現(xiàn)文件上傳功能

HTML5中怎么實現(xiàn)文件上傳功能,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比臨安網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式臨安網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋臨安地區(qū)。費用合理售后完善,10余年實體公司更值得信賴。

用的技術(shù)主要是:

ajax
FileReader
FormData

HTML結(jié)構(gòu):

JavaScript Code復(fù)制內(nèi)容到剪貼板

  1.   

  2.          

  3.            

  4.           

  

  •            

  •       

  •   

  •   

  •   

    已經(jīng)封裝好的upload.js,依賴zepto

    JavaScript Code復(fù)制內(nèi)容到剪貼板

    1. (function($) {   

    2.   $.extend($.fn, {   

    3.     fileUpload: function(opts) {   

    4.       this.each(function() {   

    5.         var $self = $(this);   

    6.         var doms = {   

    7.           "fileToUpload": $self.find(".fileToUpload"),   

    8.           "thumb": $self.find(".thumb"),   

    9.           "progress": $self.find(".upload-progress")   

    10.         };   

    11.         var funs = {   

    12.           //選擇文件,獲取文件大小,也可以在這里獲取文件格式,限制用戶上傳非要求格式的文件  

    13.           "fileSelected": function() {   

    14.             var files = (doms.fileToUpload)[0].files;   

    15.             var count = files.length;   

    16.             for (var index = 0; index < count; index++) {   

    17.               var file = files[index];   

    18.               var fileSize = 0;   

    19.               if (file.size > 1024 * 1024)   

    20.                 fileSize = (Math.round(file.size * 100 / (1024 * 1024)) / 100).toString() + 'MB';   

    21.               else  

    22.                 fileSize = (Math.round(file.size * 100 / 1024) / 100).toString() + 'KB';   

    23.             }   

    24.             funs.uploadFile();   

    25.           },   

    26.           //異步上傳文件  

    27.           uploadFile: function() {   

    28.             var fd = new FormData();//創(chuàng)建表單數(shù)據(jù)對象  

    29.             var files = (doms.fileToUpload)[0].files;   

    30.             var count = files.length;   

    31.             for (var index = 0; index < count; index++) {   

    32.               var file = files[index];   

    33.               fd.append(opts.file, file);//將文件添加到表單數(shù)據(jù)中  

    34.               funs.previewImage(file);//上傳前預(yù)覽圖片,也可以通過其他方法預(yù)覽txt  

    35.             }   

    36.             var xhr = new XMLHttpRequest();   

    37.             xhr.upload.addEventListener("progress", funs.uploadProgress, false);//監(jiān)聽上傳進度  

    38.             xhr.addEventListener("load", funs.uploadComplete, false);   

    39.             xhr.addEventListener("error", opts.uploadFailed, false);   

    40.             xhr.open("POST", opts.url);   

    41.             xhr.send(fd);   

    42.           },   

    43.           //文件預(yù)覽  

    44.           previewImage: function(file) {   

    45.             var gallery = doms.thumb;   

    46.             var img = document.createElement("img");   

    47.             img.file = file;   

    48.             doms.thumb.html(img);   

    49.             // 使用FileReader方法顯示圖片內(nèi)容  

    50.             var reader = new FileReader();   

    51.             reader.onload = (function(aImg) {   

    52.               return function(e) {   

    53.                 aImg.src = e.target.result;   

    54.               };   

    55.             })(img);   

    56.             reader.readAsDataURL(file);   

    57.           },   

    58.           uploadProgress: function(evt) {   

    59.             if (evt.lengthComputable) {   

    60.               var percentComplete = Math.round(evt.loaded * 100 / evt.total);   

    61.               doms.progress.html(percentComplete.toString() + '%');   

    62.             }   

    63.           },   

    64.           "uploadComplete": function(evt) {   

    65.             alert(evt.target.responseText)   

    66.           }   

    67.         };   

    68.         doms.fileToUpload.on("change", function() {   

    69.           doms.progress.find("span").width("0");   

    70.           funs.fileSelected();   

    71.         });   

    72.       });   

    73.     }   

    74.   });   

    75. })(Zepto);  

    調(diào)用方法:

    JavaScript Code復(fù)制內(nèi)容到剪貼板

    1. $(".camera-area").fileUpload({   

    2.         "url": "savetofile.php",   

    3.         "file": "myFile"  

    4.       });  

    PHP部分:

    PHP Code復(fù)制內(nèi)容到剪貼板

    1. if (isset($_FILES['myFile'])) {   

    2.     // Example:  

    3.     writeLog($_FILES);   

    4.     move_uploaded_file($_FILES['myFile']['tmp_name'], "uploads/" . $_FILES['myFile']['name']);   

    5.     echo 'successful';   

    6. }   

    7. function writeLog($log){   

    8.     if(is_array($log) || is_object($log)){   

    9.         $log = json_encode($log);   

    10.     }   

    11.     $log = $log."\r\n";   

    12.   

    13.     file_put_contents('log.log', $log,FILE_APPEND);   

    14. }   

    15. ?>  

    看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。


    新聞標題:HTML5中怎么實現(xiàn)文件上傳功能
    瀏覽地址:http://weahome.cn/article/ihehgg.html

    其他資訊

    在線咨詢

    微信咨詢

    電話咨詢

    028-86922220(工作日)

    18980820575(7×24)

    提交需求

    返回頂部