我包括使用 Ajax 的页面,但我还需要包括它们各自的 javascript 文件,这需要同时从内存中删除以前的 javascript 文件。
如何卸载当前加载的 javascript 文件(以及它们在内存中的代码),以便加载新页面的文件?它们很可能会发生冲突,因此加载了多个独立文件的 javascript 文件。
我包括使用 Ajax 的页面,但我还需要包括它们各自的 javascript 文件,这需要同时从内存中删除以前的 javascript 文件。
如何卸载当前加载的 javascript 文件(以及它们在内存中的代码),以便加载新页面的文件?它们很可能会发生冲突,因此加载了多个独立文件的 javascript 文件。
这听起来真的像是您需要重新评估您的设计。要么您需要删除 ajax,要么您的方法名称中没有冲突。
您可以查看此链接:http : //www.javascriptkit.com/javatutors/loadjavascriptcss2.shtml
其中提供了有关如何从 DOM 中删除 javascript 的信息。但是,现代浏览器会将代码留在浏览器的内存中。
不,你不能那样做。一旦 JavaScript 块在浏览器中加载并执行,它就会存储在浏览器内存中的相应窗口范围内。绝对没有办法卸载它(没有页面刷新/窗口关闭)。
你可以只命名你的代码..这样你就可以防止冲突
var MyJavaScriptCode = {};
MyJavaScriptCode.bla = 函数 () {};
其实这是很有可能的。您可以替换脚本或链接元素。
function createjscssfile(filename, filetype){
if (filetype=="js"){ //if filename is a external JavaScript file
var fileref=document.createElement('script')
fileref.setAttribute("type","text/javascript")
fileref.setAttribute("src", filename)
}
else if (filetype=="css"){ //if filename is an external CSS file
var fileref=document.createElement("link")
fileref.setAttribute("rel", "stylesheet")
fileref.setAttribute("type", "text/css")
fileref.setAttribute("href", filename)
}
return fileref
}
function replacejscssfile(oldfilename, newfilename, filetype){
var targetelement=(filetype=="js")? "script" : (filetype=="css")? "link" : "none" //determine element type to create nodelist using
var targetattr=(filetype=="js")? "src" : (filetype=="css")? "href" : "none" //determine corresponding attribute to test for
var allsuspects=document.getElementsByTagName(targetelement)
for (var i=allsuspects.length; i>=0; i--){ //search backwards within nodelist for matching elements to remove
if (allsuspects[i] && allsuspects[i].getAttribute(targetattr)!=null && allsuspects[i].getAttribute(targetattr).indexOf(oldfilename)!=-1){
var newelement=createjscssfile(newfilename, filetype)
allsuspects[i].parentNode.replaceChild(newelement, allsuspects[i])
}
}
}
您必须将文件名参数填充为 src 属性,并将文件类型填充为“js”或“css”
我认为没有必要解释代码。你也曾在 2009 年发过贴,嘿嘿。也许有人会需要它吧?:)
所有功劳归于:http : //www.javascriptkit.com/javatutors/loadjavascriptcss2.shtml
顺便说一句,您可以在那里学习一些技巧。
可以从浏览器中卸载 javaScript 文件以清除整个代码。步骤是:
例子
mainJs = document.getElementById("mainJs");
document.head.removeChild(mainJS);//Remooves main.js from the DOM tree
flushFile = document.createElement("script");
flushFile.setAttribute("src", "flush.js");
document.head.appendChild(flushFile);//Loads flush.js into the DOM tree, overwriting all functions and variables of main.js in browser memory to null
而已