作者:h619718610 | 来源:互联网 | 2024-11-01 12:40
本项目提供了一套集成化的图床管理系统解决方案,适用于需要高效管理图片资源的场景。系统结构简洁,无需复杂的后台支持。主要文件包括`huluxia.php`、`index.html`、`inews.php`、`kw.php`和`zz.php`,每个文件都承担了特定的功能,确保系统的稳定运行和易用性。
【实例简介】
简单的图床系统无需后台
【实例截图】
【源码目录】
集合图床
├── 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 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('
' result1.url '
');$('textarea').val(result1.url);
}else{
// layer.msg('第' j '个图片上传失败');
$('textarea').val('图片过大,或接口失效!');
}
},
// 图片上传失败
error: function () {
console.log('图片上传失败');
}
});
}
}