이번에는 IE에서 img 태그의 메모리 누수를 처리하는 방법을 보여 드리겠습니다. IE에서 img 태그의 메모리 누수를 처리할 때 주의 사항은 무엇입니까?
코드:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>IMG元素内存泄露测试</title> <script type="text/javascript" src="jquery-1.7.1.js"></script> <script type="text/javascript"> $(function () { var i = 0; var t; // img标签方式 function changeImage() { i++; var picIndex = i % 20; $("#imagePath").html("images/" + picIndex + ".jpg"); $("#p").append("<img width='100' height='100' src='images/" + picIndex + ".jpg' />"); }; function end() { clearInterval(t); $("#p").find("img").each(function () { $(this).attr("src", ""); $(this).remove(); }); CollectGarbage(); } t = window.setInterval(changeImage, 200); window.setTimeout(end, 5000); }); </script> </head> <body> <label id="imagePath"></label> <!-- 使用img标签,不改变图片大小,不会发生内存泄漏。 --> <p id="p"> </p> </body> </html>
img가 메모리를 차지하는 js 코드 해제:
$("#p").find("img").each(function () { $(this).attr("src", ""); $(this).remove(); }); CollectGarbage();
위 내용은 IE img 태그의 메모리 누수를 처리하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!