内存泄漏
function OpenPage(){
document.getElementById("img1").src="default.aspx?value="+不断变化的值;
}
function Onload()
{
window.setInterval("OpenPage()",10000);
}
<html >
<body onload="Onload()" >
<img id="img1" >
</body >
</html >
其中随着时间不断推移,IE进程所占内存就越高,CPU也会越来越居高不下!
请问哪位大侠知道问题所在? --------------------编程问答-------------------- clearInterval --------------------编程问答-------------------- 你的页面这样可能造成重复刷新。setInterval的次数回越来越多。几何增加。 --------------------编程问答-------------------- 两位ls的说得有道理 --------------------编程问答-------------------- c#想泄露内存还挺难
补充:.NET技术 , ASP.NET