The upload plug-in fileinput based on bootstrap implements ajax asynchronous upload function (supports multiple file upload preview drag and drop)

韦小宝
Release: 2018-01-01 18:35:28
Original
3935 people have browsed it

This article mainly introduces the asynchronous upload function of ajax based on the bootstrap upload plug-in fileinput (supports multiple file upload preview drag and drop). It is very good and has reference value. Friends who are interested in ajax upload can refer to the ajax upload based on bootstrap The upload plug-in fileinput implements ajax asynchronous upload function (supports multiple file upload preview drag and drop) article!

First you need to import some js and css files

     //中文包,不需要可以不用导入
Copy after login

html code

  
Copy after login

js code

$("#file-1").fileinput({   uploadUrl: '', // 必须设置个路径进入php代码部分   allowedFileExtensions : ['jpg', 'png','gif','txt','zip','ico','jpeg','js','css','java','mp3','mp4','doc','docx'],//允许的文件类型   overwriteInitial: false,   maxFileSize: 1500,//文件的最大大小 单位是k   maxFilesNum: 10,//最多文件数量   // allowedFileTypes: ['image', 'video', 'flash'],   slugCallback: function(filename) {     return filename;   } });
Copy after login

php code

$file=$_FILES['file'];//获取上称文件的信息,数组形式 $date['file_name'] = $file['name'];//文件的名称 $date['file_size'] = $file['size'];//文件的大小 $date['file_type'] = $file['type'];//文件的类型
Copy after login

Then upload, Use ajax to return an error message or success message

You can also directly use echo to return it.

Style:

The above is the ajax of the bootstrap-based upload plug-in fileinput introduced by the editor. Asynchronous upload function (supports drag and drop of multiple file upload previews), I hope it will be helpful to everyone! !

Related recommendations:

How to handle errors made by Ajax

How can ajax read local json

Solution to the button's Ajax request when one click is submitted twice

The above is the detailed content of The upload plug-in fileinput based on bootstrap implements ajax asynchronous upload function (supports multiple file upload preview drag and drop). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!