我使用带上传的malsup jQuery表单。它适用于PHP。 http://malsup.com/jquery/form/
有没有一种很好的方法来使用malsup添加分块上传?有什么建议吗?
var xhr = new XMLHttpRequest();
var percent = $('.percent');
var bar = $('.bar');
/* submit form with ajax request */
$('form').ajaxForm({
dataType: 'json',
beforeSend: function() {
bar.width('0%');
percent.html('0%');
},
uploadProgress: function(event, position, total, percentComplete) {
var pVel = percentComplete + '%';
bar.width(pVel);
percent.html(pVel);
},
success: function(xhr) {
var percentVal = '100%';
bar.width(percentVal)
percent.html(percentVal);
},
complete: function(xhr) {
var url = window.location.origin = window.location.protocol+"//"+window.location.host+"/thank-you/";
window.location.replace(url);
}
});
编辑:有没有其他人经历过上传条形指示器无法在移动Chrome上运行(至少它不适用于Chrome for iOS,我也测试了他们的默认示例)?
亲切的问候 约翰