這次帶給大家在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();
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是在ie中img標籤記憶體洩漏怎麼處理的詳細內容。更多資訊請關注PHP中文網其他相關文章!