This commit is contained in:
2025-07-07 19:31:29 +08:00
parent b083567241
commit b19e50f135
9 changed files with 34 additions and 5 deletions

View File

@@ -16,6 +16,7 @@ const upload = (e) => {
const createInput = () => {
const input = document.createElement('input');
input.type = 'file';
input.multiple = true;
input.onchange = upload;
input.style.display = 'none';
document.body.append(input);