简单的图床系统无需后台 【源码目录】集合图床├── huluxia.php
├── index.html
├── inews.php
├── kw.php
├── zz.php
└── 集合图床
├── huluxia.php
├── index.html
├── inews.php
├── kw.php
└── zz.php
1 directory, 10 files
function file_upload(files){
if (files.length == 0) return alert('请选择图片文件!');
for(var j = 0,len = files.length; j < len; j ){
console.log(files[j]);
let imageData = new FormData();
imageData.append("file", 'multipart');
imageData.append("Filedata", files[j]);
$.ajax({
url: url,
type: 'POST',
data: imageData,
cache: false,
contentType: false,
processData: false,
dataType: 'json',
// 图片上传成功
success: function (result1) {
if (result1.code == 0){
$('.preview').append('<div><img src="' result1.url '" ><code class="title1">' result1.url '</code></div>');
$('textarea').val(result1.url);
}else{
// layer.msg('第' j '个图片上传失败');
$('textarea').val('图片过大,或接口失效!');
}
},
// 图片上传失败
error: function () {
console.log('图片上传失败');
}
});
}
}
评论