我在此处和此处看到了许多 有关此类型错误的帖子,但在我的情况下,我在函数中有一个对象,如下面的代码,我收到此错误“无法从已释放的脚本中执行代码”
function updateLetterOfClaim(thisletterClaimID) {
var updatedLetter = {};
updatedLetter.new_breaches = top.opener.selected_breach.join(",");//from this line in ie7 i get this error
updatedLetter.new_causation = top.opener.selected_causation.join(",");
updatedLetter.new_chronology = top.opener.chronology_records.join(",");
updatedLetter.new_Injuries = top.opener.damage_records;
}