gpt4 book ai didi

javascript - 在 IE 中使用 uploadify 时出现内存泄漏

转载 作者:行者123 更新时间:2023-12-03 04:48:10 28 4
gpt4 key购买 nike

我在 IE 中尝试过这个。创建一个上传控件(flash版本)并销毁它,一遍又一遍地执行这些操作。但似乎在调用方法 destroy 后分配的内存并未释放。

<script src="Scripts/jquery-3.1.1.js"></script>
<link href="uploadify/uploadify.css" rel="stylesheet" />
<script src="uploadify/jquery.uploadify.js"></script>

html

<button id="btnAdd">add</button>
<button id="btnRemoveLast">remove last</button>
<div id="container">
<!--we will place uploadifies here-->
</div>

js

    <script>
$(function () {

$('#btnAdd').click(function () {
add();
});
$('#btnRemoveLast').click(function () {
removeLast();
});

var count = 0;
function removeLast() {
if (count > 0) {
$('#uploadify' + --count).uploadify('destroy');
}
}
function add() {
var elem = $('<div id="uploadify' + count++ + '"></div>');
$('#container').append(elem);
elem.uploadify({
height: 30,
swf: '/uploadify/uploadify.swf',
width: 120
});
}
});
</script>

任何答案将不胜感激,并感谢您原谅我的英语:)

最佳答案

很抱歉我的答复迟了。我下类后看到这个问题。在我看到uploadify的源代码后,我找到了问题的解决方案。它似乎在我的 IE11 上有效。注意队列 ID。 enter image description here

但是为什么不尝试一下函数 CollectGarbage().Finally,请忘记我糟糕的英语。

关于javascript - 在 IE 中使用 uploadify 时出现内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42778654/

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