gpt4 book ai didi

javascript - 在 NPObject 上调用方法时出错!

转载 作者:行者123 更新时间:2023-11-30 06:03:33 25 4
gpt4 key购买 nike

抱歉我的英语不好我将我的 uploadify 更新到最新版本 (Uploadify-v2.1.4),这破坏了我的 uploadify:我无法上传任何东西。当我尝试调用“在 NPObject 上调用方法时出错!”时,FireBug 控制台返回此错误。

我做错了什么?!

这是我的代码: http://pastebin.com/bHeYHxHw

谢谢,

丹尼尔。

最佳答案

/* 原始代码 */ uploadifyCancel:函数(ID) {

                        jQuery(this).each(function() {



document.getElementById(jQuery(this).attr('id') + 'Uploader').cancelFileUpload(ID, true, true, false);

});

},

/*新代码*/

uploadifyCancel:function(ID){

jQuery(this).each(function(){

document.getElementById(jQuery(this).attr("id")+"Uploader").cancelFileUpload(ID,true,false)

});

},

/*原代码*/

                           jQuery(this).bind("uploadifyComplete", {

'action': settings.onComplete

}, function(event, ID, fileObj, response, data) {

if (event.data.action(event, ID, fileObj, unescape(response), data) !== false) {

jQuery("#" + jQuery(this).attr('id') + ID).find('.percentage').text(' - Completed');

if (settings.removeCompleted) {

jQuery("#" + jQuery(event.target).attr('id') + ID).fadeOut(250,function() {

jQuery(this).remove()

});

}

jQuery("#" + jQuery(event.target).attr('id') + ID).addClass('completed');

}

});

/* 新代码 */

jQuery(this).bind("uploadifyProgress", {

                    'action': settings.onProgress,

'toDisplay': settings.displayData

}, function(event, ID, fileObj, data) {

if (event.data.action(event, ID, fileObj, data) !== false) {

jQuery("#" + jQuery(this).attr('id') + ID + "ProgressBar").animate({

'width': data.percentage + '%'

},250,function() {

if (data.percentage == 100) {

jQuery(this).closest('.uploadifyProgress').fadeOut(250,function() {

jQuery(this).remove()

});

}

});

if (event.data.toDisplay == 'percentage') displayData = ' - ' + data.percentage + '%';

if (event.data.toDisplay == 'speed') displayData = ' - ' + data.speed + 'KB/s';

if (event.data.toDisplay == null) displayData = ' ';

jQuery("#" + jQuery(this).attr('id') + ID).find('.percentage').text(displayData);

}

});

关于javascript - 在 NPObject 上调用方法时出错!,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6712599/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com