На базовой главной странице у меня есть следующий код:
Код: Выделить всё
Код: Выделить всё
Example demonstrating how to upload files using jQuery Dropzone Plugin
$(function () {
var myFileUploadDropZone = new Dropzone(".dropzone", {
url: "test.ashx",
maxFiles: 15,
maxFilesize: 5,
acceptedFiles: ".png, .jpg, .gif, .pdf, .doc",
addRemoveLinks: true,
dictDefaultMessage: "Drop your files here or click to upload",
dictFallbackMessage: "Your browser does not support drag & drop feature.",
dictInvalidFileType: "Your uploaded file type is not supported.",
dictFileTooBig: "File is too big ({{filesize}} MB). Max filesize: {{maxFilesize}} MB.",
dictResponseError: "Server responded with {{statusCode}} code.",
dictCancelUpload: "Cancel Upload",
dictRemoveFile: "Remove",
init: function () {
this.on("complete", function (file) {
this.removeFile(file);
});
}
});
});

Итак, я не понимаю, что я здесь делаю не так. Помогите, пожалуйста?
Подробнее здесь: https://stackoverflow.com/questions/765 ... bforms-app
Мобильная версия