gpt4 book ai didi

javascript - IE、OF、Google Chrome 中的内存泄漏递归 javascript 函数

转载 作者:行者123 更新时间:2023-11-29 20:15:36 24 4
gpt4 key购买 nike

<html>
<body>
<h1 id="t">Initial</h1>
<script>
var cnt=0;
setTimeout("addCounter()",100);
addCounter=function(){
++cnt;
if (cnt>1000000) cnt=0;
document.getElementById('t').firstChild.nodeValue='Counter: #'+(cnt);
setTimeout("addCounter()",100);
}
</script>
</body>
</html>

当我在 Internet Explorer/Firefox/Chrome 中运行此示例代码时,内存使用量会增加,直到浏览器/操作系统耗尽内存并导致浏览器崩溃!

谁能帮我改写不浪费内存的代码?或者我已将其报告为浏览器开发人员的错误?

最佳答案

这似乎阻止了失控的内存使用:

<html>
<body>
<h1 id="t">Initial</h1>
<script>
var cnt=0;
setTimeout(addCounter,100);
addCounter=function(){
++cnt;
if (cnt>1000000) cnt=0;
document.getElementById('t').firstChild.nodeValue='Counter: #'+(cnt);
setTimeout(addCounter,100);
}
</script>
</body>
</html>

不要将 setTimeout 与字符串一起使用。由于多种原因,这是一种不好的做法,而且显然会增加内存使用量(免责声明:我不是 setTimeout 方面的专家)。

关于javascript - IE、OF、Google Chrome 中的内存泄漏递归 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7087994/

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