这是我的 JavaScript 代码:
window.addEventListener('load', function() {
var submitimages = document.getElementById('submitimages');
submitimages.addEventListener('click', upload);
var images = document.getElementById('images');
});
var upload = function(event) {
event.preventDefault();
event.stopPropagation();
var data = new FormData();
for(var i = 0; i < images.files.length; ++i) {
data.append('images[]', images.files[i]);
}
var xhr = XMLHttpRequest();
xhr.open('POST', 'upload.php?test=' + 'test', true);
xhr.send(data);
}
我的目标是使用表单数据上传多个图像,我希望那些发送的图像根据 url upload.php?test=' + 'test'上的文本移动到不同的目录上,就像我想移动的示例一样那些图像测试文件夹
到目前为止,这是我的 php 代码
请帮助我尝试了我所知道的一切,但我想我需要知道谁对 JavaScript 更了解。问候