JavaScript image upload code encapsulation

巴扎黑
Release: 2017-08-13 14:48:42
Original
1629 people have browsed it

This article mainly introduces the encapsulation code of js image uploading in detail. It has certain reference value. Interested friends can refer to it.

The example of this article shares with you the js image uploading method. The specific code is for your reference. The specific content is as follows

js encapsulation method


function uploadImages(picker, url, callback) { var img_uploader = WebUploader.create({ auto: true, server: url, pick: picker, fileNumLimit: 1, fileSingleSizeLimit: 2097152, // 2M accept: { title: 'Images', extensions: 'gif,jpg,jpeg,bmp,png', // mimeTypes: 'image/*' }, compress: { width: 300, compressSize: 102400 // < 100kb 不压缩 }, }) var fileType = ['image/jpeg', 'image/jpg', 'image/gif', 'image/png', 'image/bmp'] img_uploader.on('beforeFileQueued', function(file) { fileType.some(function(name) { return file.type === name }) ? '' : alert('请上传正确的图片!') }) img_uploader.on('uploadSuccess', function(file, res) { callback(file, res) }) img_uploader.on('uploadError', function(file, reason) { console.log(reason); }) img_uploader.on('uploadComplete', function(file) { img_uploader.reset() }) }
Copy after login

html


图片

Copy after login

javascript


var coverImage; initImageUploader(); function initImageUploader(){ var fileUrl = 你想上传的地址; uploadImages('#imagePicker', fileUrl, function(file, res) { coverImage = res.url $('#zTu').get(0).innerHTML = '

' }) }
Copy after login

The above is the detailed content of JavaScript image upload code encapsulation. 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!