我使用uploadify在我的CMS中上傳文件。一切都很好,直到最近。我在這部分得到了在這條線「調用NPObject上的方法時出錯!」在Uploadify
document.getElementById(jQuery(this).attr('id') + 'Uploader').startFileUpload(ID, checkComplete);
錯誤
Error calling method on NPObject
uploadifyUpload:function(ID,checkComplete) {
jQuery(this).each(function() {
if (!checkComplete) checkComplete = false;
document.getElementById(jQuery(this).attr('id') + 'Uploader').startFileUpload(ID, checkComplete);
});
},
我不知道爲什麼,一天的調試和測試後,我發現如果我從
刪除replace(/\&/g, '\\&')
String.prototype.escAll = function(){
var s = this;
return s.replace(/\./g, '\\.').replace(/\?/g, '\\?').replace(/\&/g, '\\&');
};
然後它再次工作。我真的不知道爲什麼。
任何幫助將不勝感激!
請指定您使用的瀏覽器。 – sergzach 2011-05-28 19:06:44