我正在尝试修改这个 jQuery 插件:http ://tutorialzine.com/2013/05/mini-ajax-file-upload-form/ 我想要做的是:当图像完成上传时,而不是我要显示图像的进度条。
在 script.js 中有这个功能:
progress: function(e, data){
// Calculate the completion percentage of the upload
var progress = parseInt(data.loaded / data.total * 100, 10);
// Update the hidden input field and trigger a change
// so that the jQuery knob plugin knows to update the dial
data.context.find('input').val(progress).change();
if(progress == 100){
data.context.removeClass('working');
}
}
因此,我可以显示一些文本,而不是进度条:
if(progress == 100){
data.context.removeClass('working');
$('.test').html('test');
}
但是我需要的是放一个url,所以我想在进度函数中添加一个参数,但是我到处搜索,我没有看到进度函数被调用的地方。有人可以帮助我吗?