我正在使用此网站上的表单上传器插件上传照片http://jquery.malsup.com/
效果很好,我很满意。
唯一的问题是我在附加表单时删除HTML DIV(清除HTML包括表单元素)&然后重新创建它(我需要为网站做这个)第二次重新创建表单附加的HTML。 (例如:当元素被移除时,它不会解除绑定)。
我一直试图解开这个事件,但我似乎无法做到。
初始绑定看起来像这样
$('#joinPhotoUploadFormProfile').ajaxForm({
http://jquery.malsup.com/ - 该插件的网站选项未显示解除绑定。
我尝试过这样的事情:
$('#joinPhotoUploadFormProfile').children().off();
$('#joinPhotoUploadFormProfile').add("*").off();
$('#joinPhotoUploadFormProfile').ajaxFormUnbind();
$('#joinPhotoUploadFormProfile').unbind('ajaxForm');
有什么建议吗?
以下是我如何设置它:
$('#joinPhotoUploadFormProfile').ajaxForm({
beforeSend: function() {
$('#progressGallery').fadeIn('fast');
var percentVal = '0%';
$('#uploadGalleryBar').width(percentVal);
$('#uploadGalleryPercentage').html(percentVal);
},
uploadProgress: function(event, position, total, percentComplete) {
var percentVal = percentComplete + '%';
$('#uploadGalleryBar').width(percentVal);
$('#uploadGalleryPercentage').html(percentVal).css({'left':'40%','color':'lightblue'});
},
complete: function(xhr) {
我需要关闭授权吗?我该怎么做?
答案 0 :(得分:1)
根据这个:
ajaxform: how to remove it, so default submit action is taken
$('#joinPhotoUploadFormProfile').ajaxFormUnbind();
应该工作。
请确保在删除表单之前调用unbind!