Questions tagged «blueimp»

15
blueimp文件上传插件中的maxFileSize和acceptFileTypes不起作用。为什么?
我正在使用Blueimp jQuery文件上传插件来上传文件。 我在上传但选择没有问题maxFileSize,并acceptFileTypes没有工作。 这是我的代码: $(document).ready(function () { 'use strict'; $('#fileupload').fileupload({ dataType: 'json', autoUpload: false, acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i, maxFileSize: 5000000, done: function (e, data) { $.each(data.result.files, function (index, file) { $('<p style="color: green;">' + file.name + '<i class="elusive-ok" style="padding-left:10px;"/> - Type: ' + file.type + ' - Size: ' + file.size + …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.