如何手动卸载jQuery库以便再次释放使用过的内存?
实际问题是我在iframe中加载jquery,在更改源代码后,将jquery保留在内存中并且不再释放它。 (有关更多背景信息,请参阅increasing memory usage with jquery)
答案 0 :(得分:6)
我认为不可能明确释放jQuery使用的内存,但有一件事你可以尝试:
window.jQuery = window.$ = undefined;
编辑:(根据马特的评论):
更好:
delete window.jQuery;
delete window.$;